Re: [jQuery] finding y position

2007-03-14 Thread Fabien Meghazi
By far the easiest way to do that is to use the Dimensions plugin. It is amazingly accurate, even taking into account borders, padding, overflow:scroll, etc. Any idea why the dimension plugin does not get into the jquery core ? There are more and more plugins relying on this one and it seems

Re: [jQuery] WebHTMLEditor

2007-01-30 Thread Fabien Meghazi
/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Events bubbling

2007-01-06 Thread Fabien Meghazi
the simple way to stop bubbling is to return false. the only time I needed anything else was to activate the href after the click got caught. Well I found a workaround using the second function of hover(); Is it a dirty workaround ? ___ jQuery

Re: [jQuery] Events bubbling

2007-01-06 Thread Fabien Meghazi
not at all dirty... the 2 function hover is way cool! my advice was just general stuff! Funny ! you posted this at the very moment I was looking back to your first reply to this thread, because my hover() trick is not working 100% I've just been confronted to the fact that a focus on a select

[jQuery] Konqueror in jQuery.browser

2006-12-23 Thread Fabien Meghazi
/.test(b), msie: /msie/.test(b) !/opera/.test(b), - mozilla: /mozilla/.test(b) !/(compatible|webkit)/.test(b) + mozilla: /mozilla/.test(b) !/(compatible|webkit|like gecko)/.test(b), + konqueror: /konqueror/.test(b) }; -- Fabien

[jQuery] (Half-OffTopic) jQuery Firebug

2006-12-13 Thread Fabien Meghazi
be handy. I know it's possible with greasemonkey but I wonder if there's an easier way to do this ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] (Half-OffTopic) jQuery Firebug

2006-12-13 Thread Fabien Meghazi
var s = document.createElement('script'); s.src='http://jquery.com/src/jquery-1.0.4.js'; document.body.appendChild(s); Thanks ! I didn't knew the dom createElement's way would imply the load, parse and execution of a remote script. ___ jQuery