[jquery-dev] Re: JQuery table sorter issue

2009-11-16 Thread DBJDBJ
http://groups.google.co.uk/group/jquery-en?hl=en -- You received this message because you are subscribed to the Google Groups jQuery Development group. To post to this group, send email to jquery-...@googlegroups.com. To unsubscribe from this group, send email to

[jquery-dev] $.ajax BUG creating an JQuery object from the response HTML

2009-11-16 Thread jurtrx
Hi, I've ran into a weird behavior loading a simple HTML page via $.ajax and then converting the response string to a JQuery object with $ (data). I've written a script doing exactly this which work perfectly fine on my desktop computer using safari. As soon as I run the script on the intended

[jquery-dev] Jquery popup on IE

2009-11-16 Thread Veeru
All, I have a strange issue with jquery, I'm using jquery to hide some results on page load. 1. I have a jsp page whihc displays 10 records under ul /ul tag 2. In Jquery, I'm hiding 5 results and replace with more.. toggle hyper link, once the user clicks on more link, then remaining records

[jquery-dev] Jquery hide() is messing up with other html code

2009-11-16 Thread Veeru
All, Need your help, I would appreciate, your help! 1. I’m hiding some records on page load using jquery, teh result is displayed under ul html tag 2. On page loads, I’m calling jquery to show only first 3 records and hide rest of them. 3. This is working fine in all browsers 4.

[jquery-dev] Expected behavior of $(document.createTextNode(test)).text()

2009-11-16 Thread Xavi
Hello, Currently $(document.createTextNode(test)).text() returns empty string. Is this expected? Thanks, Xavi -- You received this message because you are subscribed to the Google Groups jQuery Development group. To post to this group, send email to jquery-...@googlegroups.com. To

[jquery-dev] Re: $.ajax BUG creating an JQuery object from the response HTML

2009-11-16 Thread Dave Methvin
I've ran into a weird behavior loading a simple HTML page via $.ajax ... I've followed a few debugging hints and clues and eventually narrowed down the problem, using a test string as the response HTML: htmlbodyforminput name='PHPSESSID' //formdivtest/div/ body/html The HTML you send back

[jquery-dev] Re: $.ajax BUG creating an JQuery object from the response HTML

2009-11-16 Thread jurtrx
I've tried that, too. But it doesn't change anything. I need to parse a list of data entries in HTML format. even if use only fragments, as soon as the list contains 40 or 50 entries to parse, I run into the same problem again, no matter if the list is wrapped within a complete html document or

[jquery-dev] Re: $.ajax BUG creating an JQuery object from the response HTML

2009-11-16 Thread Dave Methvin
Do you have a small test case you can put up somewhere? -- You received this message because you are subscribed to the Google Groups jQuery Development group. To post to this group, send email to jquery-...@googlegroups.com. To unsubscribe from this group, send email to

[jquery-dev] Re: $.ajax BUG creating an JQuery object from the response HTML

2009-11-16 Thread Már Örlygsson
The HTML you send back to $.ajax should be an HTML fragment and not an entire page. Begging the question, why on earth not? -- Már -- You received this message because you are subscribed to the Google Groups jQuery Development group. To post to this group, send email to

[jquery-dev] jQuery and SVG

2009-11-16 Thread Mr Speaker
I was investigating this bug: http://dev.jquery.com/ticket/1745 and noticed that there is also a separate patch: http://dev.jquery.com/ticket/4850 I think the patch would deal with the bug, so the perhaps the tickets should be merged... buuut, what's the general feeling on supporting SVG

[jquery-dev] Re: $.ajax BUG creating an JQuery object from the response HTML

2009-11-16 Thread Dave Methvin
The HTML you send back to $.ajax should be an HTML fragment and not an entire page. Begging the question, why on earth not? jurtrx said: I've ran into a weird behavior loading a simple HTML page via $.ajax and then converting the response string to a JQuery object with $(data).

Re: [jquery-dev] jQuery and SVG

2009-11-16 Thread John Resig
It's a bit hard because implementing some of the changes because there will be a definite performance hit (for selectors and adding/removing classes). If it was possible to implement the changes without that happening I would consider a good patch in. --John On Mon, Nov 16, 2009 at 9:15 PM, Mr