[jQuery] Re: jQuery.browser.version doesn't recognise IE7 anymore

2008-01-13 Thread corpore


... and another thing: The version of Firefox is not correctly returned
either (have no problems in this regard with IE). I'm currently using
Firefox ver.: 2.0.0.11 and jQuery retrieves ver.: 1.8.1.11.
Fred


NetHawk wrote:
 
 Don't know, if this has been observed by anybody else. Just wanted to
 let everybody know, that jQuery.browser.version returns 6 as version
 in IE7. 
 

-- 
View this message in context: 
http://www.nabble.com/jQuery.browser.version-doesn%27t-recognise-IE7-anymore-tp14781664s27240p14787955.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: 1.2 and XPath Contains Predicate Selector

2007-10-09 Thread corpore


checked it today - Yep - it did the trick! 

Thanks Karl!



Karl Swedberg-2 wrote:
 
 Hi there,
 
 In 1.2.x, you would use the CSS equivalent:
 
   $(a[id *= smenu])
 
 Or, you could use the Basic XPath plugin.
 
 http://jquery.com/plugins/project/xpath
 
 Hope that helps,
 
 --Karl
 _
 Karl Swedberg
 www.englishrules.com
 www.learningjquery.com
 
 
 
 On Oct 2, 2007, at 11:54 AM, corpore wrote:
 


 ..mmh, have a bit of a problem with the  XPath Contains Predicate  
 Selector..

 Updating code based on jQuery-1.1.3 to jQuery-1.2.1 and changing
 aforementioned selectors I've found that
 where something like this used to work:

 $([EMAIL PROTECTED] *= smenu])

 the, obviously only apparent, equivalent:

 $(a:has(@id *= smenu))

 does not. Where do I go wrong?







 -- 
 View this message in context: http://www.nabble.com/1.2-and--XPath- 
 Contains-Predicate-Selector-tf4555667s27240.html#a13001553
 Sent from the jQuery General Discussion mailing list archive at  
 Nabble.com.

 
 
 

-- 
View this message in context: 
http://www.nabble.com/1.2-and--XPath-Contains-Predicate-Selector-tf4555667s27240.html#a13119039
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] 1.2 and XPath Contains Predicate Selector

2007-10-02 Thread corpore


..mmh, have a bit of a problem with the  XPath Contains Predicate Selector..

Updating code based on jQuery-1.1.3 to jQuery-1.2.1 and changing
aforementioned selectors I've found that
where something like this used to work:

$([EMAIL PROTECTED] *= smenu])

the, obviously only apparent, equivalent:

$(a:has(@id *= smenu))

does not. Where do I go wrong?







-- 
View this message in context: 
http://www.nabble.com/1.2-and--XPath-Contains-Predicate-Selector-tf4555667s27240.html#a13001553
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: 1.1.3 speed regression for selection of tags

2007-07-04 Thread corpore


I can confirm Karls findings. The slowdown of 1.1.3 is quite obvious when,
for example, using the interface plugin 'floating window' 
http://interface.eyecon.ro/demos/windows.html 
http://interface.eyecon.ro/demos/windows.html  . On minimizing/maximising
this window disturbing visual animation artefacts occur with 1.1.3 .
Transitions are pretty smooth however with 1.1.2 

Fred


Karl Rudd wrote:
 
 
 Just been going through some of my current work and seeing what
 improvements come with jQuery 1.1.3. Unfortunately it looks like
 there's a bit of a regression in terms of speed for Firefox (2.0.0.4).
 
 So far I've only looked at the speed decrease when selecting 'input'
 elements, so it may be isolated to them or something general.
 
 You'll need Firebug on Firefox. Firebug lite is included though.
 
 Here's a page with using 1.1.2:
 
 http://krudd.net/jquery113speed/jquery_elementtest_112.html
 Result: setup: 781ms
 
 Here's the same page using 1.1.3:
 
 http://krudd.net/jquery113speed/jquery_elementtest_113.html
 Result: setup: 1937ms
 
 And for kicks I looked at using straight DOM methods to select the
 'inputs' (getElementsByTagName) and 1.1.3:
 
 http://krudd.net/jquery113speed/jquery_elementtest_113_dom.html
 Result: setup: 531ms
 
 I haven't had time to dig through the 1.1.3 source to see where the
 slowdown could be occurring. Anyone have any ideas?
 
 Under IE there is a similar, though markedly smaller, slow down
 between 1.1.2 and 1.1.3.
 
 Karl Rudd
 
 

-- 
View this message in context: 
http://www.nabble.com/1.1.3-speed-regression-for-selection-of-tags-tf4011905s15494.html#a11429484
Sent from the JQuery mailing list archive at Nabble.com.