[jQuery] Re: sites made with jQuery

2008-02-07 Thread GianCarlo Mingati
Strange, it is absolutely positioned to the bottom via css. Thanks tho. GC On Feb 6, 9:27 pm, walterg2 [EMAIL PROTECTED] wrote: The only thing I noticed was a mispositioning of the footer when JS is disabled, but other than that, it's very nice and degrades gracefully. Mike Francisco wrote:

[jQuery] Re: sites made with jQuery

2008-02-07 Thread GianCarlo Mingati
yes it's true, the footer goes in the middle of the page. but hey... what the web will be without js? ;-) GC On Feb 6, 9:27 pm, walterg2 [EMAIL PROTECTED] wrote: The only thing I noticed was a mispositioning of the footer when JS is disabled, but other than that, it's very nice and degrades

[jQuery] Re: sites made with jQuery

2008-02-07 Thread Sam Sherlock
Also the email text after the portfolio 'want to know more just ask' does not display ends after just. Perhaps if safe_mail could replace existing text (ie mail me (at) my-domain(dot)net) rather than fill an empty span. (The again this is pure this is a extremely mute point) The site is smooth

[jQuery] shadowbox+flash preload

2008-02-07 Thread GianCarlo Mingati
Hi Sam, thanks... and you're right, without js the mail link is not created. I found, however, safe_mail is working very well; since its installation in this page, i receive far less spam mails. Shadowbox: is one of the greatest script i've seen so far mostly because of its smart plugin

[jQuery] Re: Finding index of the first empty text field

2008-02-07 Thread andrea varnier
On 7 Feb, 03:11, bikuta [EMAIL PROTECTED] wrote: Hi all, I'm trying to find the index of the first empty text field (class name is item). Hi there I've tried in many ways but the only one that works seems to be this one: $(input).index($(.item[value='']:first)[0]); You definitely need that

[jQuery] Re: Finding index of the first empty text field

2008-02-07 Thread andrea varnier
On 7 Feb, 11:23, andrea varnier [EMAIL PROTECTED] wrote: $(input).index($(.item[value='']:first)[0]); this one is better: $(input).index($(.item[value=''])[0]); since we're using that [0] there's no longer need for the :first selector :)

[jQuery] Re: How do I filter an XML file?

2008-02-07 Thread andrea varnier
On 6 Feb, 21:52, victorcorey [EMAIL PROTECTED] wrote: XML sample: ?xml version=1.0 encoding=UTF-8? [...] How can I filter the row nows based on the region? I want to only show row nodes that have a region value of Latin America and the Caribbean. is this some xml you get from an ajax call?

[jQuery] Plugin method

2008-02-07 Thread Olivier Percebois-Garve
Hi all I'm struggling to get a private function running in a plugin. Here are the 2 pieces of code, first the running version then the more elegant but broken. Obviously there is something that I have understood wrong in the pattern. Can somebody point me to a better way to do this ? //fully

[jQuery] it's only 1 character

2008-02-07 Thread weepy
The closures around plugins, when concatenated together (e.g. via Rails 2.0) into one javascript file for production, can confuse the javascript parser - despite the fact there is a new line. I propose that there should be a semicolon at the first character to stop this. I.e. ;(function($) {

[jQuery] Re: it's only 1 character

2008-02-07 Thread Karl Swedberg
Thanks for the heads up, Jonah. I'll add this to my plugins. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 7, 2008, at 8:10 AM, weepy wrote: The closures around plugins, when concatenated together (e.g. via Rails 2.0) into one javascript file

[jQuery] Re: Adding events to newly added fields

2008-02-07 Thread Juha Suni SC
bikuta wrote: The way I'm adding the item is just by adding another row to the html table using the append() method. Should I be doing it another way? Instead of binding the events for all the rows individually, just bind the events once to the container element. It's events get triggered as

[jQuery] Re: Thickbox Alternative that Works with jQuery

2008-02-07 Thread Andy Matthews
If you like Thickbox, why are you looking for something different? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cfdvlpr Sent: Thursday, February 07, 2008 10:20 AM To: jQuery (English) Subject: [jQuery] Thickbox Alternative that Works with

[jQuery] Re: sites made with jQuery

2008-02-07 Thread cfdvlpr
Can someone please post a link to the shadowbox plugin?

[jQuery] Re: jQuery UI Enchant Alpha Versions Released

2008-02-07 Thread John Resig
Superb, well done team jQuery! The UI stuff is looking smooth. I notice that there are even some significant changes to the innerds of jQuery in v1.2.3. (For instance you've coded the :selectors using functions instead if strings. Has that improved performance?) Not significantly (minor,

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-07 Thread Karl Rudd
You can use square brackets, you just have to put a '\' before them (which has to be done as '\\' because of JavaScript's encoding) http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F Karl On Feb 8, 2008 1:28 AM, Dave Stewart

[jQuery] Re: Firefox 3 beta

2008-02-07 Thread John Resig
Are you .load()ing HTML with a JavaScript snippet in it? If so, then that's a bug in Firefox 3 and it will be resolved before release. Or you could use jQuery 1.2.2 and newer - which will work with Firefox 3 just fine. --John On Feb 7, 2008 5:01 AM, kenneth [EMAIL PROTECTED] wrote: Hello

[jQuery] Code that works in FF but not IE7

2008-02-07 Thread Microwavehead
Hi, I'm kinda confused, I've got some code that puts a frame into a table as a new row when a row is clicked. Now it works in FF but not IE. I've been browsing around and come to no solutions. Now the problem is that my code errors out on the line: var el = this; not sure why. Here's the code.

[jQuery] Tablesorter plugin

2008-02-07 Thread Leanan
Anyone had any issues with the latest version of this in IE? I have a page that uses this, and I've made use of the sortStart and sortEnd triggers. For whatever reason, the sortEnd trigger never fires -- so the message box I have show never goes away. Also, the zebra striping isn't working at

[jQuery] Re: Test if jquery has loaded

2008-02-07 Thread Shawn
That would fail if jQuery hasn't loaded. It would give an error saying something like $ has no properties, or $ is not a function. You could try something like this: if (jQuery) { alert(jQuery loaded); } I haven't tested this but don't see why it wouldn't work... HTH Shawn Kyle Browning

[jQuery] jquery cycle works in FF but stretches to the bottom in IE

2008-02-07 Thread Peter
Hi guys I'm new to this group and I hope someone can help me out here. I am developing a page which uses jquery carousel and cycle plugins. The cycle plugin is giving me trouble. The cycle plugin works like a charm in FF but IE it does not play any affect and it stretches all the way down as if

[jQuery] jQuery won't recognise attribute names containing [square brackets]

2008-02-07 Thread Dave Stewart
I'm finding it impossible using jQuery to select any attributes with square brackets in them. I'm sure most people know PHP uses square brackets within form element names to submit multi-dimensional arrays, ie: contact[name] contact[email] contact[telephone]

[jQuery] Autopopulate multiple select plugin question

2008-02-07 Thread daweb
Hi everybody, I'm using the plugin in object to autopopulate a multiple select. It works nicely. Now, I would want to select (selected=selected) the right item when I reload the page. I have this: if (@$this-input-post('ajaxSelectChoose')) { $query =

[jQuery] AJAX beforeSend setRequestHeader problem with IE

2008-02-07 Thread Tom Beddard
I have the following code to force the HTTP_ACCEPT header when doing ajax calls so that my Rails app can properly interpret the request using it's respond_to block: $.ajaxSetup({ beforeSend: function(xhr) {xhr.setRequestHeader(Accept, text/ javascript);} }); This is working fine with

[jQuery] Detecting the selected Item when it is load via ajax

2008-02-07 Thread phipps_73
Hi, I have 3 related selects - Districtid,Circuitid and Churchid. When a user selects a districtid it populates the Circuitid select list with Circuits for that District. When the Circuit list is populated it automatically has the first circuit selected and this then loads the churchid select

[jQuery] Firefox 3 beta

2008-02-07 Thread kenneth
Hello everybody I recently installed the new beta version of firefox 3 I thought it would accept everything we are now designing on a new website but unfortunatly it doesn't accept all jquery code. for example: .load of a specific php file in an other div doesn't seem to work anymore. This is

[jQuery] Thickbox Alternative that Works with jQuery

2008-02-07 Thread cfdvlpr
Thickbox is great and I love the way it works. Is there anything else like it that works with jQuery?

[jQuery] frameReady plugin and reloading iframes

2008-02-07 Thread Jake McGraw
So, I've been using the brilliant frameReady plugin, and when I ran across an issue: I'd like to be able to reload an iframe (sometime after initial loading) and have frameReady perform the exact same actions as it did to begin with. I think this is a similar issue as re-binding of events to DOM

[jQuery] Release: Treeview plugin 1.4

2008-02-07 Thread Jörn Zaefferer
I've just released an update to the a href=http://bassistance.de/jquery-plugins/jquery-treeview-tooltip/;treeview plugin/a. One major improvement are completely overhauled themes, based on CSS sprites that require only two images. That makes customizing them much easier, while also

[jQuery] Re: [validate] validator.pendingRequest below 0

2008-02-07 Thread Jörn Zaefferer
Yuval schrieb: Hey Jörn! ajaxQueue was indeed included when this did not work. It was loaded in this order though, I don't know if it matters. [...] So it's loaded last. Thanks, Yuval The order doesn't matter. Seems like the problem still exists - so I'll take your proposed fix into

[jQuery] Re: Using Literal Objects in Javascript with JQuery

2008-02-07 Thread rics
Object Literal is a specification of EcmaScript... The most usefull example of it is JSON. JSON is basicaly an implementation of OL... Well, I'm not the best teacher for this... I'm learning it too. On Feb 6, 2:06 pm, J Moore [EMAIL PROTECTED] wrote: Yes, great screencast. (I think i learned

[jQuery] changing the selected option in a select

2008-02-07 Thread rolfsf
I can't seem to get this to work... I'm using jquery 1.1.4 I have a link 'a.clear' When clicking on a.clear, I want to reset all selects to a 'null' option: javascript:void(0); clear select option value=0--/option option value=1 selected=selectedthis/option option value=2

[jQuery] Re: sites made with jQuery

2008-02-07 Thread GianCarlo Mingati
http://mjijackson.com/2008/01/22/shadowbox-js-media-viewer-1-0-beta/ On Feb 7, 5:23 pm, cfdvlpr [EMAIL PROTECTED] wrote: Can someone please post a link to the shadowbox plugin?

[jQuery] Re: [validate] Wait to send remote until user pauses/finishes typing

2008-02-07 Thread Jörn Zaefferer
morrijr schrieb: Hi, I've got a textbox which has a remote rule on it which works very well thanks. However I get a request on every keypress, would it be possible to add a (definable?) delay after the keypress before the request is submitted which, if another key is input before the delay

[jQuery] [ANNOUNCE] jQuery UI Enchant Alpha Versions Released

2008-02-07 Thread Rey Bango
The jQuery UI team announced today the release of alpha versions of jQuery UI 1.5a and jQuery Enchant 1.0a! The projects aim to address the need for a strong set of UI controls and effects to complement the jQuery JavaScript library. From Paul Bakaus, UI team lead: Hi everybody! I'm very

[jQuery] Re: Release: Treeview plugin 1.4

2008-02-07 Thread cfdvlpr
very cool. fyi, your link is broken.

[jQuery] Re: Adding events to newly added fields

2008-02-07 Thread Ariel Flesler
This can help you do what Juha said: http://flesler.blogspot.com/2007/10/jquerylisten.html Cheers Ariel Flesler On Feb 7, 11:37 am, Juha Suni SC [EMAIL PROTECTED] wrote: bikuta wrote: The way I'm adding the item is just by adding another row to the html table using the append() method.

[jQuery] intercepting links and adding a short animation before executing them

2008-02-07 Thread schnuck
hello guys, the title tells it all really: intercepting links and adding a short animation before executing them this might be the most amateur question for tonight - however an answer would be very appreciated. example: i have a simple navigation in an unordered list. i want to make the page

[jQuery] [validate] Delay remote until user pauses/finishes typing

2008-02-07 Thread morrijr
Hi, I've got a textbox which has a remote rule on it which works very well thanks. However the server gets a request on every keypress, would it be possible to add a (definable?) delay after the keypress before the request is submitted which, if another key is input before the delay times out

[jQuery] [validate] Wait to send remote until user pauses/finishes typing

2008-02-07 Thread morrijr
Hi, I've got a textbox which has a remote rule on it which works very well thanks. However I get a request on every keypress, would it be possible to add a (definable?) delay after the keypress before the request is submitted which, if another key is input before the delay times out causes the

[jQuery] Re: FireFox Click Function Can't Access DHTML Element

2008-02-07 Thread [EMAIL PROTECTED]
Forgot to mention... I'm using JQuery 1.1.2, which is really old at this point, but I've also tried using the latest versions 1.2.2 and 1.2.3 as well and this did not resolve the problem.

[jQuery] What tool is used to minify the official jQuery distribution?

2008-02-07 Thread [EMAIL PROTECTED]
I've been testing out various minifying strategies, such as Dean Edwards' packer, YUI Compressor, jsmin, etc. My goal is to concatenate all my required .js files and then minify them en masse. I've read of concerns about trailing semicolons, etc. and am curious what tool is used to minify the

[jQuery] Re: FireFox Click Function Can't Access DHTML Element

2008-02-07 Thread nate
Ha, you sound like an earlier version of me. This was a LOT of diggin to find an answer and since I happen to have saved it, I'll share it with you. I did not test this with your code at all, it is meant to be plug and play. You may need to have the prototype library. I don't know since I have

[jQuery] Re: Test if jquery has loaded

2008-02-07 Thread Kyle Browning
Of course it would fail if the function didnt exist. Thats the point. He wanted to know how to check if it was loaded or not, so If the alert doesnt show up, its not loaded. On Feb 6, 2008 11:48 PM, Shawn [EMAIL PROTECTED] wrote: That would fail if jQuery hasn't loaded. It would give an

[jQuery] Re: What tool is used to minify the official jQuery distribution?

2008-02-07 Thread Collin Allen
This isn't the official tool (I'm not sure what is, maybe jsmin?), but you might find it helpful/inspiring: http://aciddrop.com/php-speedy/ On Feb 7, 12:44 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've been testing out various minifying strategies, such as Dean Edwards' packer, YUI

[jQuery] Re: ajaxSubmit and Loading message

2008-02-07 Thread apadley
Thanks, but I still must be doing something wrong because I get the following error: jQuery(options.target).attr(innerHTML, data).evalScripts is not a function Here's the code I currently have: var v = jQuery(#two).validate({ submitHandler: function(form) {

[jQuery] getting 'undefined' using jquery.expander

2008-02-07 Thread [EMAIL PROTECTED]
Hi All, This is my first post and am VERY new to jquery (but love it!), so please forgive me for any violations of protocol. I'm using jquery.expander with the following code: $(document).ready(function() { $('ul.expander span').expander({ slicePoint: 0,

[jQuery] How to load content inside iframe into DOM?

2008-02-07 Thread Action
Let's say I have webpage that has an iframe containing some other website that I don't own such as Wikipedia. Is it possible to have a javascript function on MY website triggered every time someone clicks a link on the site contained in the iframe?

[jQuery] Re: [validate] validator.pendingRequest below 0

2008-02-07 Thread Yuval
1. Have a form with one or more fields that use remote 2. When the form is empty, click the submit button so that it shows all errors 3. Now type the correct thing into one of the fields so that it approves of it 4. Click the submit button again 5. Repeat steps 4-5 and eventually (I am not sure

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-07 Thread Dave Stewart
Wow, that's really useful to know, thanks Karl. I think I'll just use a regular expression: selector = selector.replace(/(\[|\])/g, '\$1') It would be really useful if this were an option, somehow. My jQuery- foo is not all that. Any ideas, anyone? Cheers, Dave

[jQuery] Re: Adding events to newly added fields

2008-02-07 Thread bikuta
Cool thanks, but it doesn't work for blur and change. I guess that's because they don't bubble. I saw the intercept plugin and there's also livequery. Apparently there's also a delegate plugin, but I can't find it. I'm not sure what I should use to get the best performance. Any suggestions? On

[jQuery] Mouse controlled scrolling

2008-02-07 Thread [EMAIL PROTECTED]
Hi, I've got an interface concept that I can't quite see through. The link to the prototype is here: http://dev.accelerantstudios.com/promo/index.html What I'd like to do is to take the ul's with options in them (the one with the scrollbar (overflow: auto) on the left, the one without

[jQuery] Re: FireFox Click Function Can't Access DHTML Element

2008-02-07 Thread [EMAIL PROTECTED]
Holy crap... I finally fixed this... It was an order of scripts issue... I re-ordered my JavaScript and now it works in IE and FireFox. New code: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html

[jQuery] Re: Another IE Sliding bug, the weirdest (some elements disappear and others not on SlideDown)

2008-02-07 Thread Arkilus
I would like to know if this bug is already fixed or at least in TODOs. On 1 fev, 15:42, Arkilus [EMAIL PROTECTED] wrote: Yeah I actually tried that, but does not seems to work. That is very weird, dev bar doesnt reports any css changes... On 31 jan, 03:09, Kenneth Bice [EMAIL PROTECTED]

[jQuery] Re: Tablesorter plugin

2008-02-07 Thread Leanan
Well, I've gotten the triggers to work, but I had to strip *everything* out. And I had to add a hide. So now I have: $(document).ready(function(){ $(#'display-div.hide(); $('table').tablesorter(); $('table').bind(sortStart,function(){ $('#display-div.show();

[jQuery] Re: Plugin method

2008-02-07 Thread Richard D. Worth
On Feb 7, 2008 6:54 AM, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: $li.each(function(o, i){ $(o).setBg(); }); I think you want: $li.each(function(i, o) { setBg(o); }); -or- $li.each(function() { setBg(this); });

[jQuery] Re: intercepting links and adding a short animation before executing them

2008-02-07 Thread Smith, Allex
I think this is a bad idea from a usability standpoint... But... Untested Code: $('a').click(function(){ var hrefLoc = $(this).attr('href'); $('body').fadeOut(slow,function(){ window.location = hrefLoc; }); return false; }); Might be a better way to do it, here you go.

[jQuery] Re: Problems with frames

2008-02-07 Thread Jake McGraw
If you're using frames (which shouldn't be needed for what you're describing) try using the frameReady plugin, http://ideamill.synaptrixgroup.com/?p=6. Pay attention to the load option for including the accordian plugin in your target frame. - jake On Jan 25, 2008 8:55 AM, Androrion [EMAIL

[jQuery] Re: Thickbox Alternative that Works with jQuery

2008-02-07 Thread Charles K. Clarkson
Andy Matthews wrote: : If you like Thickbox, why are you looking for something different? The grass is always greener on the other side of the browser. HTH, Charles K. Clarkson -- Mobile Homes Specialist Free Market Advocate Web Programmer 254 968-8328

[jQuery] FireFox Click Function Can't Access DHTML Element

2008-02-07 Thread [EMAIL PROTECTED]
Let me try to explain this. I'm creating a a bunch of div layers dynamically which all contain child elements in some form or fashion. Point being, I'm creating a link dynamically and adding a class name to it. Then I have a bit of JQuery code that binds a click function to that class name.

[jQuery] jQuery Cycle not working in IE 6 (You have to love it)

2008-02-07 Thread Ash
Hi, I am using jQuery Cycle on our portfolio page and all is fine, apart from IE6 (Shock IE6 not playing ball?) can anyone help me? Please? Here's the page... http://www.c9dd.com/v2/portfolio/index.php Thanks Ash

[jQuery] Re: ajaxSubmit and Loading message

2008-02-07 Thread Mike Alsup
jQuery(options.target).attr(innerHTML, data).evalScripts is not a function What versions of jQuery and the Form Plugin are you using?

[jQuery] Re: Release: Treeview plugin 1.4

2008-02-07 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: [...] Have fun! The actual link to the plugin page: http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ While I'm at it: Download: http://jquery.bassistance.de/treeview/jquery.treeview.zip Complete changelog:

[jQuery] Re: ajaxSubmit and Loading message

2008-02-07 Thread Christoph Haas
On Wed, Feb 06, 2008 at 08:21:25PM -0800, apadley wrote: I have a complex form that uses ajaxSubmit (see code below). The form takes awhile to process and I'd like to display a loading message or loading gif while waiting for the response. How can I modify or add to the code below to

[jQuery] Re: on click event does not response

2008-02-07 Thread Jquery lover
thanks now it is working fine, I will install livequery but does it slow down the site load.

[jQuery] Translating XPath expressions to CSS selectors

2008-02-07 Thread tim
The CSS 3 :root selector is not supported unfortunately, but the root node of a document is represented by document.documentElement. So you could try: $(' KNOWN_NODE', document.documentElement) or $(document.documentElement.tagName + ' KNOWN_NODE') Does that work? Yes it does,

[jQuery] Re: jquery cycle works in FF but stretches to the bottom in IE

2008-02-07 Thread Mike Alsup
Looks like you've fixed whatever problem you were having. Here you can see what I mean: http://afternine.be/development/htm/index8.html When you look at it you will see it works in FF but for some reason IE does not freakin render it :(

[jQuery] Re: thickbox reloaded and IE6 not good

2008-02-07 Thread Eridius
You can see for yourself at: http://dev.kaizendigital.com/js_test/ if you click on the statically created under thickbox reloaded, the first time it looks ok but the 2 select boxes are showing up in front, not faded. if you then close and open it again, the select are gone like they should be

[jQuery] Re: jQuery UI Enchant Alpha Versions Released

2008-02-07 Thread George
Superb, well done team jQuery! The UI stuff is looking smooth. I notice that there are even some significant changes to the innerds of jQuery in v1.2.3. (For instance you've coded the :selectors using functions instead if strings. Has that improved performance?) George On Feb 7, 4:02 pm,

[jQuery] Re: intercepting links and adding a short animation before executing them

2008-02-07 Thread schnuck
oh my god - allex, you did it. it just works. i am totally aware about the issues reg. usability - but in this case it's not for the general public. many, many thanks. s On Feb 7, 11:30 pm, Smith, Allex [EMAIL PROTECTED] wrote: I think this is a bad idea from a usability standpoint... But...

[jQuery] Re: intercepting links and adding a short animation before executing them

2008-02-07 Thread Smith, Allex
No problem... Glad I could help. AllexS -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of schnuck Sent: Thursday, February 07, 2008 4:05 PM To: jQuery (English) Subject: [jQuery] Re: intercepting links and adding a short animation before

[jQuery] Re: jQuery won't recognise attribute names containing [square brackets]

2008-02-07 Thread Karl Rudd
Remember also that technically in HTML id and name attributes can't contain '[]'s. ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (-), underscores (_), colons (:), and periods (.). -

[jQuery] I'm stumped! How to accomplish this navigation rollover effect?

2008-02-07 Thread Andy Matthews
This is what the client wants: http://commadelimited.com/uploads/rollover.jpg (text has been blurred out intentionally) The site is VERY basic: nav colum on left, content column on right. The building it out is easy, but the nav is throwing me for a loop. My original thought was that I could use

[jQuery] Re: Adding events to newly added fields

2008-02-07 Thread Ariel Flesler
Indeed, Listen won't work for events that don't bubble. blur and focus can be patched with the focusin/focusout approach. I don't know anything about delegate. LiveQuery is the easiest to implement and it should work just fine. If your site is really big, as in, you have lots of bindings and you

[jQuery] Re: Mouse controlled scrolling

2008-02-07 Thread Ariel Flesler
Hi I'd say that is doable, but using jQuery's animate() might not be the best solution, as you have to stop the current animation and start a new one. Maybe a setInterval that modifies scrollTop might be the best approach. I know you said you are a beginner.. :) Cheers Ariel Flesler On 7

[jQuery] Re: it's only 1 character

2008-02-07 Thread Ariel Flesler
Note that I added to all my plugins. I'll add a Thanks to weepy for the semicolon idea heh :) Ariel Flesler On 7 feb, 11:38, Karl Swedberg [EMAIL PROTECTED] wrote: Thanks for the heads up, Jonah. I'll add this to my plugins. --Karl _ Karl

[jQuery] jQuery 1.2.3 Released

2008-02-07 Thread John Resig
Hey Everyone - We just released jQuery 1.2.3, more information can be found in the announcement blog post: http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/ --John

[jQuery] Re: jQuery 1.2.3 Released

2008-02-07 Thread Matthieu BARBE
Thank John ! 2008/2/8, John Resig [EMAIL PROTECTED]: Hey Everyone - We just released jQuery 1.2.3, more information can be found in the announcement blog post: http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/ --John