Re: [jquery-dev] 1.4a1: need help identify an error

2009-12-14 Thread Alexandre Plennevaux
I found the culprit: switchStylesheet($('#detailsNavigation').attr('css')); where, in this case, the css attribute is empty. The bug is on my side, sorry! A. On Tue, Dec 15, 2009 at 12:18 AM, John Resig wrote: > Do you have any example code that triggers this error? That would > certainly help

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-27 Thread Alexandre Plennevaux
styling if javascript off. > > I'll be suprise if the team didn't think about it yet tho, as it is > often highlited as what javascript selector engine can't get. > > On Mar 27, 7:49 am, Alexandre Plennevaux > wrote: >> do you guys think i should suggest th

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-27 Thread Alexandre Plennevaux
all > your stylesheets. > > On Mar 26, 7:05 pm, Alexandre Plennevaux > wrote: >> ok, so if i understand this correctly, this method does not bring in a >> heavy overhead? >> > > > > --~--~-~--~~~---~--~~ You received this messag

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-26 Thread Alexandre Plennevaux
se the CSS; the styleSheets collection is the > already-parsed rules that the browser applies. See > http://www.hunlock.com/blogs/Totally_Pwn_CSS_with_Javascript for an > introduction. > > On Mar 26, 8:29 am, Alexandre Plennevaux > wrote: >> arf how stupid of me, thanks for t

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-26 Thread Alexandre Plennevaux
ound for something that i assumed would be stored in memory. If i understand correctly you parse through each css file, right? On Thu, Mar 26, 2009 at 2:19 PM, Gilles wrote: > > Try changing to JQuery.each() instead (or $.each, but I believe it's > JQuery.each()) in this case > > O

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-26 Thread Alexandre Plennevaux
; This is simplified; it doesn't handle @import and @media or escape > special characters, but it ought to work. > > Danny > > On Mar 26, 6:22 am, Alexandre Plennevaux > wrote: >> i'm just trying to be as semantically correct as possible. >> >> say

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-26 Thread Alexandre Plennevaux
ut I can imagine code like this : > > element.onmouseover =  function ( event ) > { >   try { >               element.hovered = "true" ; >  } finally { >               element.hovered = "false" ; >  } > } > > quick and dirty, though ... > > On Mar 26, 1

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-26 Thread Alexandre Plennevaux
2009/3/25 Richard D. Worth : >> You may want to look at this plugin by Ariel Flesler for accessing css >> rules: >> >> http://plugins.jquery.com/project/Rule >> >> http://flesler.blogspot.com/2007/11/jqueryrule.html >> >> - Richard >> >> On

[jquery-dev] "feature request": retrieving :hover css properties

2009-03-25 Thread Alexandre Plennevaux
hello! i first posted this in the mailing list but no replies tells me my answer is no, so this becomes a "feature request" imagine i style the :hover pseudo-class of an element via css: .myitem{ background-color:green; } .myitem:hover{ background-color:red } Is it possible to retrieve the back

[jquery-dev] Re: ajaxStart() question / suggestion

2009-03-06 Thread Alexandre Plennevaux
ot; to these buttons and having > the click handler invoke the Ajax call using each button's specific > URL. > > Just an idea. > > - Gavin > > On Mar 6, 6:20 am, Alexandre Plennevaux wrote: >> i know, i have no problem to make my script work if i specifically >

[jquery-dev] Re: ajaxStart() question / suggestion

2009-03-06 Thread Alexandre Plennevaux
i know, i have no problem to make my script work if i specifically tweak my load() calls but i would like to set it in one place. See: http://pixeline.be/test/loadanim/demo.html The buttons use the same div, shape it to the same size as the load container and display it. i would like to automat

[jquery-dev] [SUGGESTION] use google ajax api on demo pages

2009-02-23 Thread Alexandre Plennevaux
Hello, i just noticed that the jquery ui demos use locally hosted jquery + jquery UI scripts. Wouldn't it be a good idea to use the google ajax api repository? That would boost the presence of the library in the cache of more users, and reduce your server's load. Sorry if this has been the obj

[jquery-dev] Re: jQuery 1.3.2 Released

2009-02-21 Thread Alexandre Plennevaux
thank you for the extra info ! The speed improvement in 1.3.2 is amazing: with 1.3.1 i used to see that whole menu appear briefly on page load; with 1.3.2, that's history. Great! On Sat, Feb 21, 2009 at 10:37 PM, John Resig wrote: > >> Thanks to your explanation, I found a way to fix it: >> >> i

[jquery-dev] Re: jQuery 1.3.2 Released

2009-02-21 Thread Alexandre Plennevaux
content's dimensions ? (in other words, not have its content escape outside?) thanks alexandre On Sat, Feb 21, 2009 at 9:41 PM, Alexandre Plennevaux wrote: > this (work in progress) : http://m2.lab-au.com/ > > navigate sequence: theory > writing > articles > > th

[jquery-dev] Re: jQuery 1.3.2 Released

2009-02-21 Thread Alexandre Plennevaux
ight are 0 (all of its contents escape outside). If > you examine the elements in Firebug you see something similar: The ULs > are dimmed (noting that they aren't visible). > > What are you trying to create? > > --John > > > > On Sat, Feb 21, 2009 at 3:01 PM, Ale

[jquery-dev] Re: jQuery 1.3.2 Released

2009-02-21 Thread Alexandre Plennevaux
I have a strange rendering bug occuring since upgrading to 1.3.2 from 1.3.1 and even one of the nighty release (end of january) i have a (very complex) menu, marked up with unordered lists. Interaction with it toggles classes so that only the relevant ones are shown. at some point i test how man

[jquery-dev] Re: 1.3.1: error with custom attribute selection

2009-02-11 Thread Alexandre Plennevaux
super, thanks a great lot! On Tue, Feb 10, 2009 at 2:25 PM, John Resig wrote: > > Alexandre - > > This has already been fixed and will be in 1.3.2 and is in the latest nightly. > http://code.jquery.com/jquery-nightly.js > > --John > > > > On Tue, Feb 10, 2009

[jquery-dev] 1.3.1: error with custom attribute selection

2009-02-10 Thread Alexandre Plennevaux
Hi, since 1.3.1, firebug throws an error when doing a specific selector, that was working up to 1.3 Erreur : [Exception... "'Syntax error, unrecognized expression: sortby=""]' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location

[jquery-dev] Re: $.ajax, jQuery 1.3, not working with url containing fragment identifier in IE

2009-01-20 Thread Alexandre Plennevaux
hi Klaus, i reported this bug during 1.3 beta 2 testing. the testcase is here: http://pixeline.be/experiments/jquerybeta/test2.html and the bug report is here: http://dev.jquery.com/ticket/3808 Cheers, Alexandre On Tue, Jan 20, 2009 at 10:36 AM, Klaus Hartl wrote: > > All, > > I'd like to

[jquery-dev] Re: 1.3beta 2 $().load() does not function if there is a hash in the url

2009-01-07 Thread Alexandre Plennevaux
voilà! http://dev.jquery.com/ticket/3808 On Wed, Jan 7, 2009 at 10:53 PM, Alexandre Plennevaux wrote: > i will as soon as the bug tracker page finishes loading :) > > Don't know if that helps to have it included on time, but i solved it > in my code like this: > > var hr

[jquery-dev] Re: 1.3beta 2 $().load() does not function if there is a hash in the url

2009-01-07 Thread Alexandre Plennevaux
i will as soon as the bug tracker page finishes loading :) Don't know if that helps to have it included on time, but i solved it in my code like this: var href = $(this).attr('href').replace(/#.*/, ""); //IE does not like hash in urls On Wed, Jan 7, 2009 at 10:44 PM, John Resig wrote: > > Do

[jquery-dev] Fwd: [jQuery] a possible selector bug in 1.2.6 solved in 1.3.beta2

2009-01-06 Thread Alexandre Plennevaux
Sorry: i posted this in the main mailinglist: it occurs to me the dev list might be more suited. Can you confirm this is a 1.2.6 bug fixed in 1.3 beta 2? This is just so that i can tick this in my own app's bugs list. Thank you Alexandre -- Forwarded message -- From: pixeline Da

[jquery-dev] Re: Help Test jQuery 1.3 Beta 1

2008-12-23 Thread Alexandre Plennevaux
i've been working on this project for like 2 years now, it's grown so huge and i've learned so much in the process, that i could probably just start it all over again, so much of this code is outdated. Thanks for the pointer :) On Tue, Dec 23, 2008 at 8:04 AM, Kelvin Luck wrote: > >>> >>> functi