[jQuery] Input Element Focus Dancing

2009-01-14 Thread stephen
Hi, I have a text input that when it receives the text RESET and a tab, the form should reset and the focus should go to the first text input element. But something weird happens, instead the focus goes to the first element (I have seen this by placing an alert in the right place) and then ends

[jQuery] Re: Issue with loading content once using AJAX and display it as a SimpleModal (plugin)

2009-01-14 Thread Beres Botond
I think the most likely issue is that you are doing an ajax request (load), but manipulate the same div without waiting for the request to complete. So the modal is created before .load is finished. Try moving $(#content).modal(); to a callback of .load. This is a golden rule of ajax request, if

[jQuery] Re: createElement, get its value

2009-01-14 Thread CrustyDOD
Thank for the link! On Jan 14, 2:41 am, Kean shenan...@gmail.com wrote: Hmmm, you must understand event listener(bind) does not work like CSS where DOM nodes added in the future cannot be listened right now. That's where event delegation comes it.

[jQuery] Re: @name deprecated?

2009-01-14 Thread Jörn Zaefferer
The release will feature a complete changelog with links to updated and new documentation. I'll also release an update to the validation plugin for compability with both 1.2.6 and 1.3, just after the official announcment. jQuery UI 1.6 will be released in a few days, too, with compability to 1.3.

[jQuery] Re: [validate plugin] Conflict in using validation plugin with custom submit code

2009-01-14 Thread Jörn Zaefferer
Could you post a complete testpage? Looks like your extracts are missing something... Jörn On Wed, Jan 14, 2009 at 12:00 AM, Fledder ferdy.christ...@gmail.com wrote: hi, Like others I seem to have ran into the double-click to submit problem. Allow me to explain: I have a registration

[jQuery] Display Loading Image While Ajax Content Loads

2009-01-14 Thread jinscoe
Hello - I'm sorry if this posts twiceits been about 30 minutes or so since I last attempted and I still haven't seen my discussion pop up. I would guess this is a fairly easy task and I'm just missing the boat, because you see loading images everywhere with ajax loading. Here is my

[jQuery] Selector problem with $( a[ajax\\:id='46'] )

2009-01-14 Thread naden
I'm using jQuery 1.2.6 and having an a element with the attribute ajax:id=46 a href=# ajax:id=46Test Link/a According to http://docs.jquery.com/Selectors/attributeEquals#attributevalue you have to escape : with double backslash like: alert( $( a[ajax\\:id='46'] ).attr( 'href' ) ); I tried a

[jQuery] Using position

2009-01-14 Thread Russ
I have this function (below) which im using to show a div (progress) and center it over another div (diary) on my page as some ajax is called. It all works, except that it always pops an alert showing the position jquery function. Anyone else had this problem using position?? function

[jQuery] Superfish - problem with supersubs plugin

2009-01-14 Thread simon
Hi all, When I have a lot of nodes in the superfish menu it loads very slow (even from the harddrive). Anyone having the same problem? To me it seems that it is the first each() loop in the supersubs.js file which executes slow. Any tips on maybe another plugin I can use, since I dont want to

[jQuery] select() not working

2009-01-14 Thread ocptime
Hello There, I want to dynamically add a select option to an existing select dropdown when a new country is added. This i was able to do using: $jQ(#country_id option[value='new']).before(option value=' + value + '+ name + /option); After that i want to get selected the just now appended

[jQuery] syntax selector problem

2009-01-14 Thread Matt caron
If I have: $(div).click(function(){ //How do I do the following $(this + p).show(); }); I want to select the child p of the div I clicked, and I know there's proper syntax to it, but I am completely brainfarting on it. Thanks! Matt

[jQuery] Display Loading Image While Ajax Content Loads

2009-01-14 Thread jinscoe
This seems like it should just be trivial to implement, because you see it everywhere...but I'm just not having much luck. I have a website that is setup, pretty much like a slideshow - I have a forward and back button and the div in which they load is right above. I am using this bit of code to

[jQuery] jQuery selector question - Having : in attribute name

2009-01-14 Thread naden
I'm using jQuery 1.2.6 and having an a element with the attribute ajax:id=46 a href=# ajax:id=46Test Link/a According to http://docs.jquery.com/Selectors/attributeEquals#attributevalue you have to escape : with double backslash like I did. alert( $( a[ajax\\:id='46'] ).attr( 'href' ) ); I

[jQuery] Wiki Error trying to access Tabs, Datepicker on docs.jquery.com

2009-01-14 Thread michael.hasenst...@googlemail.com
Subject says it. When I try to access the online docs all I get is the message below. Is there an alternative location, especially something downloadable? I'd be grateful for such a link. Michael MediaWiki internal error. Original exception: exception 'DBQueryError' with message 'A database

[jQuery] Cluetip ajax call returns gibberish (utf-8, greek)

2009-01-14 Thread ion
Hi, I'm using cluetip in the following way: $('#content div.product_photo a.load-local').cluetip({ cursor:'pointer', cluetipClass:'rounded', dropShadow:false, width:'260px', hoverIntent: {   sensitivity:  1,   interval: 100,   timeout:  200   }, fx: { open:   'fadeIn',   

[jQuery] Re: select() not working

2009-01-14 Thread Beres Botond
It seems you don't know what .select() should be used for. It has absolutely nothing to do with selecting and option of a select box. Read the docs carefully. http://docs.jquery.com/Events/select Try this instead (assuming that #country_id is a select box): $jQ(#country_id]).value(my_value)

[jQuery] Re: jQuery 1.3rc2 Ready

2009-01-14 Thread I-CRE8
Does this release address the cleartype issue in IE internally or do we still need to work around this in our code ? Thanks, Dave Buchholz

[jQuery] Re: select() not working

2009-01-14 Thread jQuery Lover
*type: $jQ(#country_id).val(my_value); - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 4:24 PM, Beres Botond boton...@gmail.com wrote: It seems you don't know what .select() should be used for. It has absolutely nothing to do with

[jQuery] Re: syntax selector problem

2009-01-14 Thread naden
If there is only one p do $(this).children('p').show(); if you just want to show the rirst do $(this).children ('p:first').show(); On 14 Jan., 02:10, Matt caron matt.ca...@gmail.com wrote: If I have: $(div).click(function(){ //How do I do the following $(this + p).show();

[jQuery] Re: select() not working

2009-01-14 Thread Beres Botond
Ah yeah, sorry I didn't pay enough attention there :p On Jan 14, 1:37 pm, jQuery Lover ilovejqu...@gmail.com wrote: *type: $jQ(#country_id).val(my_value); - Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 4:24 PM, Beres Botond

[jQuery] Re: syntax selector problem

2009-01-14 Thread jQuery Lover
Alternatively $(div).click(function(){ // all child p's $(p, this).show(); // first child p $(p:first, this).show(); // another way to select first child p $(p:eq(0), this).show(); // etc. Other ways to select first child... :) }); - Read jQuery HowTo Resource -

[jQuery] Re: select() not working

2009-01-14 Thread jQuery Lover
OFFTOP: Ups, I meant *typo not *type (made a typo myself :) ) Sorry. - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 4:44 PM, Beres Botond boton...@gmail.com wrote: Ah yeah, sorry I didn't pay enough attention there :p

[jQuery] slideViewer (slides via image click)

2009-01-14 Thread GianCarlo Mingati
Hello List, during the last year i received lots of emails (literally tens, sign that the plugin is widely used) requiring to slide the gallery in slideViewer by clicking (also) on the images and not only on the generated UI. This morning i implemented such functionality. Since it is a minor

[jQuery] Re: jQuery selector question - Having : in attribute name

2009-01-14 Thread jQuery Lover
You can not have special character in attribute names. (it's not valid markup) Documentation is saying that your should escape VALUE bit if it contains special characters. - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 2:11 PM, naden

[jQuery] slideViewer (advance via image click)

2009-01-14 Thread GianCarlo Mingati
Hello List, during the last year i received lots of emails (literally tens, sign that the plugin is widely used) requiring the possibility to slide the galleries (generated via slideViewer), also by clickin' on the images and not only on the generated UI. This morning i implemented such

[jQuery] Re: Wiki Error trying to access Tabs, Datepicker on docs.jquery.com

2009-01-14 Thread jQuery Lover
I'm not getting this error. I remember a post that says that the doc's are hosted on different servers. So I guess I'm getting mine from not crushed server. I was quite interested of getting offline/downloadable version of jquery docs. Michael, maybe you find jquery cheatsheets useful:

[jQuery] Re: Event code in different .js files

2009-01-14 Thread Krommenaas
strange, but I should have checked. thanks!

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-14 Thread donb
I don't know what can be more discouraging that the standard 'use google' or 'that question has been asked/answered too many times' discussion. Folks, this is a discussion forum. People range from novice to expert. The experts eventually get tired of answering a novice question and get testy

[jQuery] Re: select() not working

2009-01-14 Thread ocptime
Hi all, It works. Thanks for the help. ocptime On Jan 14, 4:46 pm, jQuery Lover ilovejqu...@gmail.com wrote: OFFTOP: Ups, I meant *typo not *type (made a typo myself :) ) Sorry. - Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at

[jQuery] Re: Cluetip ajax call returns gibberish (utf-8, greek)

2009-01-14 Thread jQuery Lover
Did you change anything, because it works and shows nicely on my browser. PS. I would suggest not printing all products on the same page (you've got at lease 100 items there). - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 1:31 PM, ion

[jQuery] Re: jQuery selector question - Having : in attribute name

2009-01-14 Thread naden
Your right. The docs said: Note: if you wish to use any of the meta-characters described above as a literal part of a name, you must escape the character with two backslashes (\). For example: #foo\\:bar #foo\\[bar\\] #foo\\.bar and so I did. I used \\: to escape the : or I'm gettin you

[jQuery] Re: jQuery selector question - Having : in attribute name

2009-01-14 Thread jQuery Lover
Slightly :) You can not have special character in your html ATTRIBUTES. You should rename ajax:id to something else. Ex: ajax_id or ajaxId. - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 5:16 PM, naden n...@naden.de wrote: Your right.

[jQuery] Re: Selector problem with $( a[ajax\\:id='46'] )

2009-01-14 Thread jQuery Lover
Duplicate. See: http://groups.google.com/group/jquery-en/browse_thread/thread/e47ce13098a16ef/606e652153c624a2#606e652153c624a2 - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 3:32 PM, naden n...@naden.de wrote: I'm using jQuery 1.2.6

[jQuery] Re: Superfish - problem with supersubs plugin

2009-01-14 Thread jQuery Lover
I suggest you use Stu's CSS only dropdown menu: http://www.cssplay.co.uk/menus/final_drop.html - Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 3:11 PM, simon simon@gmail.com wrote: Hi all, When I have a lot of nodes in the

[jQuery] Re: createElement, get its value

2009-01-14 Thread jQuery Lover
OFFTTOP: The live() function will reduce so much questions on this mailing list :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 6:52 AM, Kean shenan...@gmail.com wrote: using jQuery 1.3 This will most probably work.

[jQuery] Re: jQuery selector question - Having : in attribute name

2009-01-14 Thread naden
That sucks. jQuery has no problem with $( 'a' ).attr( 'ajax:id' ); Therefore it would be nice to use it in the selector too. thanks anyway have to change it. On 14 Jan., 14:05, jQuery Lover ilovejqu...@gmail.com wrote: Slightly :) You can not have special character in your html ATTRIBUTES.

[jQuery] Re: Cluetip and Firefox 3.0.5

2009-01-14 Thread Karl Swedberg
On Jan 14, 2009, at 2:01 AM, Charlie Griefer wrote: I'm going to change my identity and move far, far, away after this, but i figured some people might be wondering what's up, and you all deserve an answer. i was helping a friend troubleshoot some JS earlier, and disabled javascript in

[jQuery] Re: Input Element Focus Dancing

2009-01-14 Thread jQuery Lover
You missed the [0]. The focus code must be: $(input[tabindex=1])[0].focus(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 1:10 PM, stephen barto...@gmail.com wrote: Hi, I have a text input that when it receives the text RESET and a tab,

[jQuery] Re: Display Loading Image While Ajax Content Loads

2009-01-14 Thread Beres Botond
Maybe you'll have more luck with this. // display loading animation here $(#ajax_content).load('/sourcefiles/example.html', {}, function() { // hide loading animation here }); However I'm still not sure if it will actually wait till images are downloaded. On Jan 14, 7:14 am, jinscoe

[jQuery] Re: Cluetip ajax call returns gibberish (utf-8, greek)

2009-01-14 Thread ion
I have not changed anything but strangely enough sometimes it works on firefox and sometimes it does not Could you check on explorer as well. About the products being on the same page, that's what the client asked for ... it takes a long time While on the subject, I'm using qute a few

[jQuery] Re: Display Loading Image While Ajax Content Loads

2009-01-14 Thread jQuery Lover
Unfortunately it will not. jQuery will know that it is getting some data and that is all. It does not know that it's html, xml or plain text. Image loading is done by browser when you insert the markup into the DOM. So the workaround would be to load your content then add it to the DOM, bind

[jQuery] .append() into style element causes error in IE only

2009-01-14 Thread Ant
Hi, I am trying to append css into a pre existing style element. $(style).append(myClass); This works as expected in Firefox, but not IE. The HTML on the page validates to HTML strict, so I'm fairly sure that it's not the issue with IE that append() won't work on incorrectly written elements. If

[jQuery] keep session alive

2009-01-14 Thread hjorth
hi i got a big problem i need to take a session from one page and keep it alive on another page where i have a long form. is this possible?

[jQuery] Re: keep session alive

2009-01-14 Thread Beres Botond
I don't see what this has to do with jQuery or Javascript in general. Maybe give us some more details. On Jan 14, 3:33 pm, hjorth andreashjo...@hotmail.com wrote: hi i got a big problem i need to take a session from one page and keep it alive on another page where i have a long form. is

[jQuery] Re: Cluetip ajax call returns gibberish (utf-8, greek)

2009-01-14 Thread jQuery Lover
You can pack your javascript code: http://jquery-howto.blogspot.com/2009/01/minimize-and-pack-your-javascript-code.html You might find this jquery and javascript performance posts useful: http://jquery-howto.blogspot.com/search/label/performance On Wed, Jan 14, 2009 at 6:45 PM, ion

[jQuery] Re: Wiki Error trying to access Tabs, Datepicker on docs.jquery.com

2009-01-14 Thread ilovejqu...@gmail.com
Damn, now I got the same problem :( For reference: === MediaWiki internal error. Original exception: exception 'DBQueryError' with message 'A database error has occurred Query: BEGIN Function: Database::begin Error: 2006 MySQL server has gone away (localhost) ' in

[jQuery] Re: keep session alive

2009-01-14 Thread jQuery Lover
You could also use jquery ui tabs for your form sections (http://docs.jquery.com/UI/Tabs). Just add two buttons proceed and previous to the bottom of each tab window and you have nice looking form :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at

[jQuery] datepicker and setdate

2009-01-14 Thread graphic...@googlemail.com
Hi, This setDate is driving me mad ! I can't set the date of the controls programatically. //create range datepickers $(#start , #end).datepicker({ showOn: button, buttonImage: images/calendar.gif, buttonImageOnly: true, beforeShow: customRange, hideIfNoPrevNext: true,

[jQuery] Re: datepicker and setdate

2009-01-14 Thread MorningZ
Well, that second selector is wrong to start with... shouldn't it be $ (#start) and not $(start) ? On Jan 14, 9:24 am, graphic...@googlemail.com graphic...@googlemail.com wrote: Hi, This setDate is driving me mad !  I can't set the date of the controls programatically.   //create range

[jQuery] Re: wildcard match question

2009-01-14 Thread jQuery Lover
Duplicate: http://groups.google.com/group/jquery-en/browse_thread/thread/a7eb506135169136/b69c5734587c995e#b69c5734587c995e Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 8:30 AM, Davis ywk...@gmail.com wrote: i want to grep a pattern of DIV id

[jQuery] jQuery 1.3 Released

2009-01-14 Thread John Resig
Hey Everyone - jQuery 1.3 is out! Full details here: http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/ Happy 3rd Birthday, jQuery! --John

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread jQuery Lover
Super !!! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009 at 7:45 PM, John Resig jere...@gmail.com wrote: Hey Everyone - jQuery 1.3 is out! Full details here: http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/ Happy 3rd

[jQuery] Can I call a different domain using .ajax async=false

2009-01-14 Thread g...@getsharepoint.com
Hi, If my code is on mydomain.com and I want to get some data from yourdomain.com can I use .ajax with async=false or does .ajax always do an XMLHttpRequest to get it's data? I know I can't use XMLHttpRequest for cross-domain requests. Thanks ahead of time.

[jQuery] Re: Selector help

2009-01-14 Thread km...@fensys.com
I need to capture all links that navigate away from the current page. If a link points back to the current page, it is allowed to go through. If it navigates away, a popup needs to appear displaying certain information. I have two different strings that point pack to the current page. One is a

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread Sam Sherlock
Happy Birthday jQuery, and hats off to all involved those charts look real impressive - 30% faster; this sizzle must be hot :) Am looking forward to using it 2009/1/14 jQuery Lover ilovejqu...@gmail.com Super !!! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On

[jQuery] Re: [jquery-dev] jQuery 1.3 Released

2009-01-14 Thread Briz
Way to go John and team. Thanks for your hard work on the library and your continuing guidance of the community. _ Brad Brizendine CTO, Glyphix http://www.glyphix.com/ On Wed, Jan 14, 2009 at 6:45 AM, John Resig jere...@gmail.com wrote: Hey Everyone -

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread MorningZ
I loove the API Browser http://api.jquery.com/ On Jan 14, 10:02 am, Briz brizb...@gmail.com wrote: Way to go John and team. Thanks for your hard work on the library and your continuing guidance of the community. _ Brad Brizendine CTO,

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread Rick Faircloth
Congratulations, John and Paul! Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Sam Sherlock Sent: Wednesday, January 14, 2009 10:00 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery 1.3 Released Happy Birthday jQuery, and hats off

[jQuery] Re: Selector Question

2009-01-14 Thread bittermonkey
Got it. Thanks Mike. So this code would have made better sense: $(button:first).click(function(event){alert(this);}) On Jan 13, 5:52 pm, Michael Geary m...@mg.to wrote: Do you have Firebug? If not, get it and enable the Console and Script tabs, then enter these statements into the console

[jQuery] Re: Selector help

2009-01-14 Thread brian
I use this sometimes to have all outside links open in a new tab/window. $('a[href^=http]') .not('[href*=' + window.location.hostname + ']') .attr('target', '_new'); You could modify that: $('a[href^=http]') .not('[href*=' + window.location.hostname + ']')

[jQuery] Re: Can I call a different domain using .ajax async=false

2009-01-14 Thread MorningZ
This is right from the code itself for the .ajax() function // Create the request object; Microsoft failed to properly // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available var xhr = window.ActiveXObject ? new ActiveXObject (Microsoft.XMLHTTP) : new

[jQuery] Re: createElement, get its value

2009-01-14 Thread Rick Faircloth
Only if you know what it does in the first place. You can't know the answer before knowing the answer... :o) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jQuery Lover Sent: Wednesday, January 14, 2009 8:27 AM To:

[jQuery] Re: Issue with loading content once using AJAX and display it as a SimpleModal (plugin)

2009-01-14 Thread Martin K
Thanks Eric, that did the trick. I'm a bit embarrassed since this was well documented on your site and I somehow missed it. Thanks for a great plugin! - Martin On Jan 13, 9:48 pm, Eric Martin emarti...@gmail.com wrote: Martin, Try using the persist:true option:

[jQuery] Re: datepicker and setdate

2009-01-14 Thread graphic...@googlemail.com
Sorry the error was in my post but not in my code. So yes it should be $(#start).datepicker(setDate, 10 Mar 2008); but that gives me non-sense date as mentioned in my first post. Any idea ? On 14 jan, 14:31, MorningZ morni...@gmail.com wrote: Well, that second selector is wrong to start

[jQuery] Re: Issue with loading content once using AJAX and display it as a SimpleModal (plugin)

2009-01-14 Thread Martin K
Thanks for your advice Beres. Eric's tip solved the problem. The problem was never the initial (Ajax) request but each following display of the modal dialog which will skip the step of populating the content. That said, you are right in that it would be better to display the modal in a callback

[jQuery] dynamic title set after ajax

2009-01-14 Thread Olaf Bosch
Hi all, after a ajax load of content in a DIV I try to change the title of the parent document, for better BookMarking. Works fine in FF, not in IE. In IE is result null. In Opera become localhost in alert. here the Code: var new_title = $(data).filter(title).text();

[jQuery] Re: datepicker and setdate

2009-01-14 Thread MorningZ
Hmm... well.. you have this declared dateFormat: dd MM yy and you say you want to set it to 10 Mar 2008 The format is looking for a 2-digit year, your value is a 4 digit year, i'd say that would be an issue and could be the cause of your unexpected result also, what about simply

[jQuery] Re: dynamic title set after ajax

2009-01-14 Thread MorningZ
This guy's code works across FF, IE and Chrome from what i see (sorry i don't have Safari or Opera installed) http://javascript.internet.com/page-details/dynamic-title-bar.html On Jan 14, 11:20 am, Olaf Bosch olaf.bo...@t-online.de wrote: Hi all, after a ajax load of content in a DIV I try

[jQuery] Re: createElement, get its value

2009-01-14 Thread CrustyDOD
The live() function will be in the new release? Any documentation on the function itself? Is this just a code taken from some plugin? If so, which one? On Jan 14, 4:39 pm, Rick Faircloth r...@whitestonemedia.com wrote: Only if you know what it does in the first place. You can't know the answer

[jQuery] jQuery Tabs

2009-01-14 Thread Eric Garside
Anyone having trouble with getting tab event callbacks to work? I'm on jQuery 1.3 and jQuery UI 1.6rc4 and none of the tab event callbacks are working.

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-14 Thread Charlie Griefer
but educating someone in how to ask a good question really -is- helping them :) http://www.catb.org/~esr/faqs/smart-questions.html On Wed, Jan 14, 2009 at 4:24 AM, donb falconwatc...@comcast.net wrote: I don't know what can be more discouraging that the standard 'use google' or 'that

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread Michael Smith
Well done - I see it has already made its way on to google's servers: http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js On Wed, Jan 14, 2009 at 6:45 AM, John Resig jere...@gmail.com wrote: Hey Everyone - jQuery 1.3 is out! Full details here:

[jQuery] Re: datepicker and setdate

2009-01-14 Thread graphic...@googlemail.com
Yes, you are so right ! Just setting the textbox value is enough ! Many thanks ! On 14 jan, 16:23, MorningZ morni...@gmail.com wrote: Hmm... well.. you have this declared     dateFormat: dd MM yy and you say you want to set it to     10 Mar 2008 The format is looking for a 2-digit

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-14 Thread Miloš Rašić
Since you're already discussing $(this), I'd like to ask something. It is a good practice to assign selected nodes to variables if you are going to need them more than once so as not to make jQuery search the document for them again and again. What about $(this)? Do I need to assign it to a

[jQuery] Re: dynamic title set after ajax

2009-01-14 Thread Olaf Bosch
MorningZ schrieb: This guy's code works across FF, IE and Chrome from what i see (sorry i don't have Safari or Opera installed) :) thanks, fine script ;) My problem is not the set of title, get the title is my problem :) -- Viele Grüße, Olaf ---

[jQuery] Re: createElement, get its value

2009-01-14 Thread CrustyDOD
Heh, it was released just now.. On Jan 14, 5:28 pm, CrustyDOD anze.stok...@gmail.com wrote: The live() function will be in the new release? Any documentation on the function itself? Is this just a code taken from some plugin? If so, which one? On Jan 14, 4:39 pm, Rick Faircloth

[jQuery] Autocomplete, can we change the q and limit parameters name ?

2009-01-14 Thread xavier
Hi, Is there a way to modify the default names of the two parameters, so instead of calling /search?q=blalimit=10 it can call /search? query=blamax=10 I was hoping for something along that way: $(#searchfield).autocomplete( /search, { q: query,

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread MarcelloP
this is a GREAT news! Welcome jQuery 1.3! But, what about jQueryUI 1.6 final? On Jan 14, 3:45 pm, John Resig jere...@gmail.com wrote: Hey Everyone - jQuery 1.3 is out! Full details here:http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/ Happy 3rd Birthday, jQuery!

[jQuery] Re: .animate() queue without pause between animations

2009-01-14 Thread Miloš Rašić
Thanks a lot to you and Karl for help. The animation works smoothly now. I had to switch to animating without queue and using setTimeout for the second rotation. It would be nice if jQuery would provide some functionality to the queues where we could choose if we want a pause between animations

[jQuery] append changes width of select boxes in ie7

2009-01-14 Thread david
Hi all, I have written a control of 2 select boxes with buttons where i can move options from left to right and vice versa. In ie7 when i make the action of moving from left to right, the select boxes shrink suddenly. I narrowed the problem to the append function here is the code from right to

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread Richard D. Worth
On Wed, Jan 14, 2009 at 12:20 PM, MarcelloP marcello@gmail.com wrote: this is a GREAT news! Welcome jQuery 1.3! But, what about jQueryUI 1.6 final? jQuery UI 1.6rc5 will be out tomorrow, and will include 1.3. 1.6 final is scheduled for one week from tomorrow (so we ensure we've fully

[jQuery] Re: Autocomplete, can we change the q and limit parameters name ?

2009-01-14 Thread brian
The 'q' is hard-coded in the makeUrl() method. But it'd be simple enough to change it to grab the param name from the options hash: var url = options.url + ? + options.q + = + encodeURI(q); And adjust the jQuery.fn.autocomplete at the bottom of the file to reflect the change: options.q =

[jQuery] Re: .animate() queue without pause between animations

2009-01-14 Thread Miloš Rašić
I don't think so. The number of pixels is not a fixed number between the positions in the menu. There are 5 icons and 5 positions, so I use an array of 5 objects that contain css properties(left, top, zIndex, width, height and opacity) of each position. The problem with calling .animate() once is

[jQuery] Re: [validate plugin] Conflict in using validation plugin with custom submit code

2009-01-14 Thread Fledder
Jorn, Thank you for responding. I seem to have been wrong in the information I provided: The form DOES submit, but it does it so fast that it is hard to see. Normally the submit would cause a redirect. The reason it is not redirecting is because my back-end PHP script relies on the post

[jQuery] jQuery website errors

2009-01-14 Thread brian
FYI, this page currently is throwing a DBQueryError: http://docs.jquery.com/UI/Tabs

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-14 Thread Rick Faircloth
You and I both know, Charlie, from this group and especially from CF-Talk that there are ways to do encouraging education and then there are ways to commit discouraging education. It's all in the tone of the reply. Personally, I think it's time for jQuery to take the route of CF-Talk and

[jQuery] No element found when firing $.post()

2009-01-14 Thread Thomas
Hello together, just a short question: by firing a request via POST to the server side Firefox shows an No element found (in German Kein Element gefunden) in its Error console (Firebug displays nothing). Example: $.post(/Portal/ReorderPortlets, { portlets: $(#portal).sortable (toArray) }); I

[jQuery] jQIR - jQuery Image Replacement IE Problem

2009-01-14 Thread Wile E. Coyote
If I disable javascript in IE 7 I get a runtime error. I guess I don't know enough about this plugin to understand why I'm getting an error if javascript is disabled. Ideally, if Javascript is disabled, the image shouldn't be replaced at all and the header should show up with no errors. Any

[jQuery] distance to mouse (..position)

2009-01-14 Thread paul
i as wondering if anyone could give me a hint on how to let something happen to an object that's within a certain distance to the cursor. i know something like that happens in the mac os x dock but i would like to that in 2d, in a table with images.

[jQuery] Performance penalty for creating dom element from a string?

2009-01-14 Thread thomasvsundert
Hi, the new documentation for jQuery 1.3 states that: To create a span use $(span/). As of jQuery 1.3 this syntax is completely equivalent to $(document.createElement(span)). First of all, what does this mean? What was the difference before? My real question is, what is the performance penalty

[jQuery] new Jquery Cheat Sheet

2009-01-14 Thread ericb...@gmail.com
Is there a new Jquery cheat sheet for 1.3? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups jQuery (English) group. To post to this group, send email to jquery-en@googlegroups.com To unsubscribe from this group,

[jQuery] New VisualStudio version of 1.3 already :-)

2009-01-14 Thread MorningZ
Wow are people fast http://blogs.ipona.com/james/archive/2009/01/14/jquery-1.3-and-visual-studio-2008-intellisense.aspx hope that helps

[jQuery] Re: jQuery website errors

2009-01-14 Thread Kean
Also http://docs.jquery.com/Frequently_Asked_Questions On Jan 14, 9:40 am, brian bally.z...@gmail.com wrote: FYI, this page currently is throwing a DBQueryError: http://docs.jquery.com/UI/Tabs

[jQuery] Re: Jquery 1.2.3 does not return a type for radio controls?

2009-01-14 Thread Scott Sharkey
Karl Swedberg wrote: hmm. that doesn't sound right to me. I just put up a test page using jQuery 1.2.3, and it identified radio controls just fine: http://test.learningjquery.com/123.html Can we see the HTML? Maybe something else is going on. div id=job_template fieldset label

[jQuery] Re: @name deprecated?

2009-01-14 Thread Micky Hulse
Excellent! Thanks Dave (and all!) I really appreciate all the help. :) On Jan 13, 3:40 pm, Dave Methvin dave.meth...@gmail.com wrote: So, just to clarify, 1.3 is where @name becomes deprecated? The @attr has been deprecated (advised to be avoided) for some time; 1.3 is where it is no

[jQuery] stock price ticker plugin?

2009-01-14 Thread mark
hi guys, i am looking for a stock price ticker plugin, that will change color of the price green or red, and also change in real time. do you guys know any plugins or any other suggestions for this? thanks

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread AdrianMG
YEAH BABY On Jan 14, 3:45 pm, John Resig jere...@gmail.com wrote: Hey Everyone - jQuery 1.3 is out! Full details here:http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/ Happy 3rd Birthday, jQuery! --John

[jQuery] Re: Using position

2009-01-14 Thread Russ
dont worry, its my own doing - i had an alert in the calling function to display the position code. On Jan 14, 4:15 pm, Russ rustyj...@xtra.co.nz wrote: I have this function (below) which im using to show a div (progress) and center it over another div (diary) on my page as some ajax is

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread Ashley
I just read the release info and changes and I must say I'm impressed and pleased in equal measure. I'm a Perl hacker who came to jQuery because I find its syntax natural and it reminds me of Perl in that you can code how you think. I am amazed that the kit/community is doing so many things so

[jQuery] When to use LiveQuery plugin

2009-01-14 Thread ocptime
Hi all, I had seen a new plugin called LiveQuery and i have some questions that are not yet completely answered when i read its documentation. I am using jquery.form.plugin, My questions is when to use livequery and what is it's advantages. is it possible to use livequery in conjention with the

  1   2   >