Re: [jQuery] jqModal: closeClass and href?

2007-02-19 Thread fatjoez
FYI: jqModal website: http://dev.iceburg.net/jquery/jqModal/ Similar system to thickbox but lighterweight New problem though. submit button presses are NOT detected when the jqmodal page is loaded via AJAX. ie. instead of putting the contents of the login etc on the page, i put it in a

Re: [jQuery] jqModal: closeClass and href?

2007-02-19 Thread Brice Burgess
Kristinn Sigmundsson wrote: You could do a $(.jqmClose).click(), only thing I could come up with without having spend much time with jqModal //Kristinn That is the current method -- you trigger the close event which has been attached to an element via $(e).click(); IIf you have multiple

Re: [jQuery] jqModal: closeClass and href?

2007-02-19 Thread Brice Burgess
fatjoez wrote: Problem is, the externally linked login box even though EXACT same code as inline, when attempting to submit via the submit button, the associated function in document ready is not launched. So basically when launching the external AJAX requested login page, the submit button in

Re: [jQuery] Figure out which img in a div was clicked?

2007-02-19 Thread Kim Johnson
Glen and Matt, thanks for your responses! I've spent a bunch of time on this tonight and managed to get a working solution, though I'm hoping to tweak it a little now. (url for a refresher... note, i've been working off a different page now, so these new changes aren't up. At least this will

Re: [jQuery] Including a file based on Form Select

2007-02-19 Thread Kristinn Sigmundsson
Heres a similar example from when I was starting out with jquery, had ALOT of test pages back then :P Might help you Javascript: var formOptions = { male: 'test5.php?type=male', female:

Re: [jQuery] Id of a textarea element

2007-02-19 Thread Peter Bengtsson
On 2/18/07, Klaus Hartl [EMAIL PROTECTED] wrote: Peter Bengtsson schrieb: From the Firebug console... document.getElementById('id_descriptions.sv'); textarea id=id_descriptions.sv cols=40 rows=3 name=descriptions.sv:latin1:utext:record $('#id_descriptions.sv'); []

Re: [jQuery] Id of a textarea element

2007-02-19 Thread Peter Bengtsson
I have to disagree with that. Why shouldn't I be able to classify elements no matter if there's an id or not. It's not all about CSS, an id also serves as anchor and for scripting purposes. It's the same as if you were saying using a type selector together with a class makes no sense. And:

[jQuery] tables - is this possible ?

2007-02-19 Thread ronaldo
Hi all, I have pretty basic js jquery skills so need some input on whether this is feasible: With some code, would i be able to scan the html page for a table/table tag; and create an excel file based on the table data ? if so, whats the correct syntax to loop through td? The main advantage

Re: [jQuery] ajax within opera does not work

2007-02-19 Thread unco
thanks for the reply jake i'm using opera 9.1 on tiger and still getting blank page Ⓙⓐⓚⓔ wrote: when I tab to hotels typing a letter scrolls the list. So I have no advice... this part i dont understand either.. there should be a form ..no list? can i ask what you're running? and

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread David Duymelinck
ronaldo schreef: Hi all, I have pretty basic js jquery skills so need some input on whether this is feasible: With some code, would i be able to scan the html page for a table/table tag; and create an excel file based on the table data ? if so, whats the correct syntax to loop through td?

[jQuery] Plugin updates

2007-02-19 Thread Gerry Tucker
Hi all, Would it be better on the plugins page if all authors could add an update date so it's obvious if/when a plugin has been updated? Currently I'm browsing all the plugins that I use on a regular basis to see if they have changed. Regards, Gerry

[jQuery] wrapinner with 1.1.1

2007-02-19 Thread Oliver Boermans
Hey all, I had some trouble today attempting to use the simple wrapinner plugin with jquery 1.1.1. http://motherrussia.polyester.se/jquery/wrapInner/ Some modification to the plugin code was required to make it do what I was looking for. // The additional argument is 's' (for selector)

[jQuery] Where's the limitQueue plugin gone?

2007-02-19 Thread Gerry Tucker
Anyone know where the limitQueue plugin has gone? I keep getting a 404. Regards, Gerry ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Plugin updates

2007-02-19 Thread Karl Swedberg
Hi Gerry, Thanks for the suggestion! There's a lot of activity going on in the [dev] and [web] lists regarding plugins. You are not alone in your concerns, and the dev and web teams are planning some major improvements to the way that plugins are presented on the site. --Karl

[jQuery] jquery form plugin

2007-02-19 Thread Timothy Bowler
Hi, Just been using the ajax form plugin - its pretty kewl. However, im trying to perform some validation and to access a field the api says to use: |var value = $('#myFormId :password').fieldValue(); I have tryed this and if I use alert, the value is undefined. The form has both name and

[jQuery] jqModal and AJAX

2007-02-19 Thread Abdallah
Hello, I'm trying to find the problem in my implementation of jqModal in my web app. I've set up an html only (static) test page that shows the problem i'm facing: if you look at: http://dev.trickos.com/mrp/test/jqmodal-test.htm The trigger for the jqModal window is the Edit link. If called alone

[jQuery] Execute effect half way through current effect

2007-02-19 Thread Yansky
Hi, I'm not sure if this is possible, but I would like to execute an effect once the current effect has completed a certain portion of it's task. This is what I want to do: $(document).ready(function() { $('#full-article').hide(); $('#link-full-article').click(function() {

Re: [jQuery] wrapinner with 1.1.1

2007-02-19 Thread Christian Bach
Hi! Here is the new version. jQuery.fn.wrapInner = function(o) { return this.each(function(){ var jQ = jQuery(this); var c = jQ.html(); jQ.empty().append(o.el).filter(o.id).html(c); }); } $(p).wrapInner({el: 'a href=http://jquery.com;',

[jQuery] bind problem

2007-02-19 Thread ad4m
Hi everybody! I'm new to jquery and i've got some irritating problem. I want to assign an on click event to an a element. I'm using bind method and i'm getting the error like: c[j].apply is not a function in line 1002 in jquery script file. I have no idea what is the reason. Can you help me??

Re: [jQuery] jquery form plugin

2007-02-19 Thread Mike Alsup
Hi Tim, Do you have a sample page? fieldValue should never return undefined for a password field. You can see examples of fieldValue in action on this page: http://www.malsup.com/jquery/form/#fields Mike I have tryed this and if I use alert, the value is undefined. The form has both name

Re: [jQuery] jquery form plugin

2007-02-19 Thread Timothy Bowler
Hi Mike, I am trying to get the value of a name field - below is part of the form and the JS Thanx from page: form name=contactForm id=contactForm action= method=post .. Your Namebr / input type=text name=name / /form from JS $(document).ready(function(){ var options = {

Re: [jQuery] jquery form plugin

2007-02-19 Thread Mike Alsup
I am trying to get the value of a name field - below is part of the form and the JS Tim, First, don't use ajaxForm and ajaxSubmit together. Pick one or the other. ajaxForm is almost always the best one to choose. Try this: html head script type=text/javascript src=jquery-1.1.1.js/script

Re: [jQuery] Where's the limitQueue plugin gone?

2007-02-19 Thread Sam Collett
On 19/02/07, Gerry Tucker [EMAIL PROTECTED] wrote: Anyone know where the limitQueue plugin has gone? I keep getting a 404. Regards, Gerry Google has it in its cache:

Re: [jQuery] Where's the limitQueue plugin gone?

2007-02-19 Thread Gerry Tucker
Thanks Sam, I was about to use it on a site, and then couln't find it, so thanks for being a great help. Regards, Gerry On 2/19/07, Sam Collett [EMAIL PROTECTED] wrote: On 19/02/07, Gerry Tucker [EMAIL PROTECTED] wrote: Anyone know where the limitQueue plugin has gone? I keep getting a

Re: [jQuery] jquery form plugin

2007-02-19 Thread Timothy Bowler
Thank you very much Mike, ill try that later. One last thing, if i want the form to be submitted by an html link rather than a submit button how do i do that ? Thanx in advanced Tim -- ___ Timothy M Bowler BSc(Hons) MSc MIET | Technology

[jQuery] ajax error

2007-02-19 Thread ad4m
Hi! I'm getting an error: Error: [Exception... 'Permission denied to call method XMLHttpRequest.open' when calling method: [nsIOnReadyStateChangeHandler::handleEvent] nsresult: 0x8057001e (NS_ERROR_XPC_JS_THREW_STRING) location: unknown data: no] when using thickbox with jquery in FF.

Re: [jQuery] ajax error

2007-02-19 Thread Rey Bango
It looks like you're trying to make a cross-domain call which JS, by default, will prevent. Is this the case? Rey ad4m wrote: Hi! I'm getting an error: Error: [Exception... 'Permission denied to call method XMLHttpRequest.open' when calling method:

Re: [jQuery] Plugin updates

2007-02-19 Thread Rey Bango
Hi Gerry, We're building a new plugin repository with a host of new features that will make getting information on plugins much easier. Its in the works. :o) Rey... Gerry Tucker wrote: Hi all, Would it be better on the plugins page if all authors could add an update date so it's

Re: [jQuery] bind problem

2007-02-19 Thread ad4m
Joel Birch wrote: On 20/02/2007, at 12:17 AM, ad4m wrote: Hi everybody! I'm new to jquery and i've got some irritating problem. I want to assign an on click event to an a element. I'm using bind method and i'm getting the error like: c[j].apply is not a function in line 1002 in jquery

Re: [jQuery] Including a file based on Form Select

2007-02-19 Thread Alex Ezell
Excellet Kristinn! Thanks! /alex On 2/19/07, Kristinn Sigmundsson [EMAIL PROTECTED] wrote: Heres a similar example from when I was starting out with jquery, had ALOT of test pages back then :P Might help you Javascript: var formOptions = {

Re: [jQuery] Smooth Scrolling for same-page links

2007-02-19 Thread hcabbos
Hey Klaus. Do you think you could post the new code that includes everyone's final recommendations? Karl Swedberg-2 wrote: Ah! That is beautiful, Sam! Thanks! You know, sometimes I make things much harder for myself than they have to be, just because I fear the browser (IE in

Re: [jQuery] jquery form plugin

2007-02-19 Thread Mike Alsup
Thank you very much Mike, ill try that later. One last thing, if i want the form to be submitted by an html link rather than a submit button how do i do that ? Tim, That's a case when you would use ajaxSubmit instead of ajaxForm because you want to submit the form in response to the anchor's

Re: [jQuery] Smooth Scrolling for same-page links

2007-02-19 Thread Klaus Hartl
hcabbos schrieb: Hey Klaus. Do you think you could post the new code that includes everyone's final recommendations? I think that is already the code I posted, I took Sam's improvements into account already... Karl? -- Klaus ___ jQuery mailing

[jQuery] textarea newline jquery form

2007-02-19 Thread CodeWizard
Hi, I'm having some problems with the jquery form plugin. I'm taking input from a textarea and sending it to a mysql db with an ASP script. If I enter this text: Some Text It shows up in the db as: http://codewizards.dk/wierd.newline.gif If i send it without using javascript it works fine

Re: [jQuery] ajax error

2007-02-19 Thread Rey Bango
hmm. I'll be glad to help you out. Can you post a sample so I can run it myself. Rey ad4m wrote: Hi Rey, No, it's not the case... I'm making a normal request in my domain area. And that's the point... I've just read about signing the script files on Mozilla, but I don't think this is

Re: [jQuery] Smooth Scrolling for same-page links

2007-02-19 Thread Karl Swedberg
On Feb 19, 2007, at 10:46 AM, Klaus Hartl wrote: hcabbos schrieb: Hey Klaus. Do you think you could post the new code that includes everyone's final recommendations? I think that is already the code I posted, I took Sam's improvements into account already... Karl? -- Klaus Yep, that

Re: [jQuery] textarea newline jquery form

2007-02-19 Thread Mike Alsup
I'm having some problems with the jquery form plugin. I'm taking input from a textarea and sending it to a mysql db with an ASP script. If I enter this text: Some Data sent via ajax is encoded in UTF-8 (using JavaScript's encodeURIComponent function). If you require a different encoding you

Re: [jQuery] Smooth Scrolling for same-page links

2007-02-19 Thread Brandon Aaron
I believe there are some syntax errors in the version Klaus posted. Here is a version that *should* work (untested). $('[EMAIL PROTECTED]#]').bind('click', function() { if (location.pathname != this.pathname location.host != this.host) return; var target = $(this.hash);

Re: [jQuery] Id of a textarea element

2007-02-19 Thread Michael Geary
You may use a period in an id still being valid XHTML, but in this case you cannot use the id as a (CSS) selector, because the period is a class selector. I'm not convinced it's not a bug in jQuery because it doesn't make sense to specify a class on an Id. I'm not going to make a

Re: [jQuery] Id of a textarea element

2007-02-19 Thread Karl Swedberg
And: If it were a bug in jQuery, it would be a bug in every known CSS parser that exists out there. Because the CSS selector div#identifier.classification Sorry. I didn't know this was a valid selector. I though the . had to be preceded with a space or a tagname. would only select the

Re: [jQuery] wrapinner with 1.1.1

2007-02-19 Thread John Resig
It seems like this would be a better solution: jQuery.fn.wrapInner = function(html){ return this.each(function(){ var wrap = $(html); while ( this.firstChild ) wrap.append( this.firstChild ); wrap.appendTo( this ); }); }; no need for a filter, and you don't lose your

[jQuery] Bug in jquery related to text elements?

2007-02-19 Thread dalvarado
Hi, Is anyone familiar with a bug in JQuery where including the jquery.js library on your page seems to disassociate text elements from their parent forms? This is the text element I have that no longer recognizes its parent form when I call

Re: [jQuery] Google's Summer of Code

2007-02-19 Thread Alex Cook
Yea, similar to PlotKit and the like... From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Avi Mehta Sent: Saturday, February 17, 2007 4:55 AM To: discuss@jquery.com Subject: [jQuery] Google's Summer of Code Sorry if it is a dumb question but

[jQuery] Rounded corners question

2007-02-19 Thread dalvarado
Hi, Please disregard my previous post about a bug in jquery and text elements. I wish to revise that by saying, when I include jquery, the jq-corner.js library and then include this code script type=text/javascript $(function(){ $('.inner').wrap('div class=outer/div');

[jQuery] CORE BUG: NAME attribute masquerades as ID in $('#id') selector IE6/7

2007-02-19 Thread Brice Burgess
While implementing Interface Sliders, I learned that under IE6/7 jQuery 1.1.1's ID selector ($('#uniqueID')) will return either an element with ID of uniqueID or an element with a NAME of uniqueID -- whichever comes first. Firefox in unaffected, returning ONLY the element with ID of uniqueID

Re: [jQuery] ajax error

2007-02-19 Thread Ⓙⓐⓚⓔ
I believe it's tighter than just domain... just to the same named server. I noticed this when the ajax looked for http://www.site.name and the page was loaded from http://site.name On 2/19/07, ad4m [EMAIL PROTECTED] wrote: Hi Rey, No, it's not the case... I'm making a normal request in my

Re: [jQuery] adding a class to positive and negative data cells in a table column

2007-02-19 Thread Alex Cook
Heck, I even learned something here :) I love this list... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Danny Wachsstock Sent: Saturday, February 17, 2007 8:17 PM To: discuss@jquery.com Subject: Re: [jQuery] adding a class to positive and negative data

Re: [jQuery] textarea newline jquery form

2007-02-19 Thread CodeWizard
I've allready tried that, but the results are the same. I've changen the mysql db to use utf-8 Changed the html page meta http-equiv=Content-Type content=text/html; charset=utf-8 / And the ASP part Response.charset=utf-8 Shouldn't that do the trick... or do i need to change it somewhere else ?

[jQuery] change method on hidden fields

2007-02-19 Thread Jon Ege Ronnenberg
Hi all! I've been sizzling a little with the change method but I can't seem to get it to work. I have two hidden fields that gets updated by numerous links and it works fine but the function I have tired to the onchange event is never fired. Here is some code snippets from my code: $(function(){

[jQuery] Sites Powered by jQuery - Updated!

2007-02-19 Thread Rey Bango
Hey guys, Just a reminder that we're always taking submissions for new jQuery-powered websites. Please submit them to me or Karl Swedberg ([EMAIL PROTECTED]) and be sure to include: - Link - Name of Company - What the site does - The version of jQuery being used - Where and how jQuery is used

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread ronaldo
Apologies for not being clearer. This is the situation: I have a table populated by a php/mysql script. I've created an excel export option which changes the header to ms-excel and refreshes the current page by making another call to the mysql db to fetch the data. So I thought, the table data is

Re: [jQuery] CORE BUG: NAME attribute masquerades as ID in $('#id') selector IE6/7

2007-02-19 Thread Brandon Aaron
This is a known issue with IE. The name and id attribute share the same namespace. I think a fix for this would greatly decrease the performance of selecting by ID in IE. None-the-less could you post this over on the dev list? http://jquery.com/mailman/listinfo/dev_jquery.com -- Brandon Aaron

[jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread John Resig
Hi Everyone - Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have partnered to integrate the amazingly lightweight and powerful jQuery framework with Ext's awesome UI library. This collaboration will greatly enhance the capabilities of both projects and

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread Alexandre Plennevaux
Basically, it's no, not possible. More info here: http://www.thescripts.com/forum/thread93938.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ronaldo Sent: mardi 20 février 2007 1:11 To: discuss@jquery.com Subject: Re: [jQuery] tables - is this

[jQuery] ANNOUNCEMENT: jQuery Ext Partner to Deliver Integrated JavaScript UI, Features

2007-02-19 Thread Rey Bango
Today, we’re proud to announce that the jQuery Project and Jack Slocum’s Ext Project, have partnered to integrate the amazingly lightweight and powerful jQuery framework with Ext’s awesome UI library. This collaboration will greatly enhance the capabilities of both projects and expand the

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread Stefan Kilp [sk-software]
SUPER - SUPER - SUPER - GREAT i like to use both as soon as possible. thanks a lot to jQuery and Jack Slocum team for these great products Best regards, Stefan Kilp Hi Everyone - Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have partnered to

[jQuery] collapsible menus ~ pixel carnage

2007-02-19 Thread fatjoez
discovered collapsible menu tutorial by pixel carnage. Got it working all except for the fact that if I wrap the Expand/Collapse link with h3 (for styling purposes) the expan/collap fails... Heres the tutorial by PixelCarnage: http://pixelcarnage.net/articles/development/jquery-collapsible-menu/

Re: [jQuery] ajax error

2007-02-19 Thread Kenneth
I've had an error similar to that I believe from running AJAX code locally. It sees my local env as 1 domain, then trying to access an outside site (such as my site on the net) is interpreted as cross-domain. Probably not the case here, but thought I'd throw that out there anyways. On 2/19/07,

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread rolfsf
Wow! Great news! I love some of Jack's UI modules but I was avoiding them because I was trying to standardize on jquery. Thanks to both teams for doing this! John Resig wrote: Hi Everyone - Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread Alex Brem
Wow - this is fantastic news! Great to see those two libs somewhat merge together and possibly also boost the communities around these projects. :) John Resig wrote: Hi Everyone - Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have partnered to

Re: [jQuery] collapsible menus ~ pixel carnage

2007-02-19 Thread Olaf Bosch
fatjoez schrieb: Very straightforward I tried to modify the javascript to handle the surrounding h3 but to no avail! You have not a A in your HTML, look: $(#Menu li h3 a + ul) this select this ul id=Menu li id=current_cath3a href=# Accessories /a/h3 -- Viele Grüße, Olaf

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread Glen Lipka
Build a better mousetrap and the world will beat a path to your door. *Ralph Waldo Emerson* ** Congratulations! It's amazing to see the speed in which jQuery has taken off. I am waiting for the release one day that Microsoft is dumping Atlas in favor of jQuery!

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread John Resig
Vote up the announcement! http://digg.com/programming/jQuery_Ext_Partner_to_Deliver_Integrated_JavaScript_UI_Features http://www.dzone.com/links/jquery_ext_partner_to_deliver_integrated_javascri.html --John ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread Ⓙⓐⓚⓔ
Oh come on guys... if you collect the data and simply separate the fields by a tab, then ajax it back to a simplistic cgi, it could save the file for a short period of time, and the user could download the tab separated data right into excel. But the server side solutions might be more

Re: [jQuery] collapsible menus ~ pixel carnage

2007-02-19 Thread fatjoez
hmm. for now i removed the h3 all the h3 i put in the javascript until I can find a way to use it with H3. maybe the author knows more! -- View this message in context: http://www.nabble.com/collapsible-menus-%7E-pixel-carnage-tf3256095.html#a9053001 Sent from the JQuery mailing list archive

Re: [jQuery] collapsible menus ~ pixel carnage

2007-02-19 Thread fatjoez
Quite helpful. If only you had come 1 hour earlier lol. I ditched h3 modified the CSS painstakingly to mime the H3 without it's presence. PS: I didn't paste the code properly hence the missing closing uls lack of an within the h3 etc etc. My problem now is this. If you're browsing the

Re: [jQuery] ajax within opera does not work

2007-02-19 Thread Ⓙⓐⓚⓔ
tiger and 9.1! perhaps we can schedule an on line debugging session! gtalk? aim? yahoo!? I'm jakecigar on all. On 2/19/07, unco [EMAIL PROTECTED] wrote: thanks for the reply jake i'm using opera 9.1 on tiger and still getting blank page Ⓙⓐⓚⓔ wrote: when I tab to hotels typing a letter

[jQuery] Sites Powered by jQuery

2007-02-19 Thread Rey Bango
Hey guys, Just a reminder that we're always taking submissions for new jQuery-powered websites. Please submit them to me or Karl Swedberg ([EMAIL PROTECTED]) and be sure to include: - Link - Name of Company - What the site does - The version of jQuery being used - Where and how jQuery is used

Re: [jQuery] Smooth Scrolling for same-page links

2007-02-19 Thread [-Stash-]
This is exactly what I've been looking for as just using the following with Interface 1.2 makes # links to other pages completely unusable: $(document).ready( function() { $(document).ScrollToAnchors(630); } ); But I'm afriad to say that none of this works for me :( I've been using the

[jQuery] ajax and cache busting

2007-02-19 Thread Geoffrey Knutzen
I thought that the ajax function automatically added a unique parameter to each request to make sure that results don't get cached. Or was I just dreaming that? I am using getJSON, does that make any difference? Thanks -Geoff ___ jQuery

Re: [jQuery] wrapinner with 1.1.1

2007-02-19 Thread Oliver Boermans
Tidy! Thanks John. While that is suits my particular purpose nicely, I'm curious, how would you to change it to insert the to-be-wrapped content into the _deepest_ point in the supplied HTML snippet. Like regular wrap. eg: Usage: $('p').wrapInner('stronga href=//a/strong'); To make this: pHello

Re: [jQuery] Google's Summer of Code

2007-02-19 Thread Jake McGraw
Since we're now getting yui-ext, which offers UI components with a look and feel much like native MS Windows components, graphing is the next step to allowing the little guys to provide an AJAX Office experience. I'd like to other my help in this endeavor in whatever way I can. - jake On

Re: [jQuery] jqModal and AJAX

2007-02-19 Thread Abdallah
Nope, nothing in he forums. I hacked some code last nite, and I think I have a solution, but it's a patch to jqModal. I'll post it in a bit. On 2/19/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Abdallah, Try rebinding it, I ran this in firebug once the pages was loaded and then I clicked on

[jQuery] Validation plugin 1.0 alpha 2

2007-02-19 Thread Jörn Zaefferer
Hi folks, thanks again for the feedback on the alpha 1 release! It helped a lot to push some more improvements: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Some notable changes: * Streamlined API for support of different events. The default, submit, can be

Re: [jQuery] wrapinner with 1.1.1

2007-02-19 Thread John Resig
I just got served :-( On 2/19/07, Dave Methvin [EMAIL PROTECTED] wrote: jQuery.clean takes array-like collections, so this should work as well: jQuery.fn.wrapInner = function(html){ return this.each(function(){ jQuery(html).append(this.childNodes).appendTo(this); }); };

Re: [jQuery] Sites Powered by jQuery

2007-02-19 Thread Larry Garfield
Oh yes, there's a whole forum for it: http://drupal.org/forum/25 I'm going to be relaunching a Drupal site in the next day or two that's an upgrade from Drupal 4.7 to 5. We're not doing much with jQuery specifically, but, well, it's in there. :-) On Monday 19 February 2007 8:37 pm, John Resig

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread Matt Stith
I would try something like: $(table).each(function() { // Loop through each table $(this).find( td).each(function() { // Loop through each TD in the table $(this).find( tr).each(function() { // Loop through each TR in the TD // do something with the data }); });

Re: [jQuery] tables - is this possible ?

2007-02-19 Thread Matt Kruse
I have a table populated by a php/mysql script. I've created an excel export option which changes the header to ms-excel and refreshes the current page by making another call to the mysql db to fetch the data. So I thought, the table data is already embedded in the current html page; why make

Re: [jQuery] ANNOUNCEMENT: jQuery Ext Partner to Deliver Integrated JavaScript UI, Features

2007-02-19 Thread ashutosh bijoor
Great news!! This will be another major step towards bringing jqism to the masses! -Ashutosh On 2/20/07, Rey Bango [EMAIL PROTECTED] wrote: Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have partnered to integrate the amazingly lightweight and powerful

Re: [jQuery] Google's Summer of Code

2007-02-19 Thread Rey Bango
The good thing about jQuery is that its designed to be extensible so you'll be able to build out office-like components leveraging jQuery Ext. At the moment, though, building complete office-like components is not on the radar for the team but we'd love to hear your suggestions. Rey... Jake

[jQuery] Test

2007-02-19 Thread Rey Bango
test email ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] collapsible menus ~ pixel carnage

2007-02-19 Thread fatjoez
Hey. Dont worry about my code ay. All I'm basically asking is that in reference to the code pixel carnage provides as an example on his site, is it possible to modify this so that on the same Line as the Menu link which opens/closes a sub menu, is it possible also to add a LINK to an actual

Re: [jQuery] Test

2007-02-19 Thread John Resig
test response On 2/20/07, Rey Bango [EMAIL PROTECTED] wrote: test email ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] jqUploader development: conception question

2007-02-19 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Subject: [jQuery] jqUploader development: conception question hello,   i'm (still) working on my plugin that is meant to replace a given file input field by a richer flash upload dialog.   you can view it here:

Re: [jQuery] Test

2007-02-19 Thread fatjoez
lol random -- View this message in context: http://www.nabble.com/Test-tf3257066.html#a9055778 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/