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
uss@jquery.com > > > http://jquery.com/discuss/ > > > > > > > > > > -- > > View this message in context: > http://www.nabble.com/WebHTMLEditor-tf3135531.html#a8703372 > > Sent from the JQuery mailing list archive at Nabble.com . > > > > > > ___ > > jQuery mailing list > > discuss@jquery.com > > http://jquery.com/discuss/ > > > > > ___ > 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://jquery.com/discuss/

Re: [jQuery] Events bubbling

2007-01-07 Thread Fabien Meghazi
> $('#foo').mouseout(function(e) { >if (this == e.target) { > // do your magic >} > } > > In essence, check that the item being moused out of is in fact the > item that the handler is attached to. Wow ! Thanks a lot ! It is indeed what I'm searching for. By any chance, is it possible

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

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 mai

[jQuery] Events bubbling

2007-01-05 Thread Fabien Meghazi
e over the displayed div, I want it to disapear. My problem is that in the div I have many elements and some links. When the mouse come over a link, the mouseout event of the parent div is triggered. I want to avoid that. How can I do ? PS: Already tried stopPropagation() -- Fabien Meghazi Web

[jQuery] Konqueror in jQuery.browser

2006-12-23 Thread Fabien Meghazi
eror: /konqueror/.test(b) }; -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED] ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

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 mai

[jQuery] (Half-OffTopic) jQuery & Firebug

2006-12-13 Thread Fabien Meghazi
onsole would 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 lis

Re: [jQuery] New jQuery plug - selectBox

2006-11-07 Thread Fabien Meghazi
> > This is what it does: It hooks right on your existing select element. > > Hides it and appends some div elements and a list, allowing you to > > style it to your taste. > > If you select something in the 'fake' selectbox the exact value is > > selected in the hidden selectbox, > > so your forms