[jQuery] Re: How to animate remove() and html() ?

2008-03-09 Thread Fabien Meghazi
this ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: How to animate remove() and html() ?

2008-03-09 Thread Fabien Meghazi
not tested : $.get(URL, function(html) { $(html).hide().appendTo('#foobar').fadeIn(fast); }); Yeps working. Thanks ! -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: How to animate remove() and html() ?

2008-03-07 Thread Fabien Meghazi
freezing. And I must admitt thhhhh ,rkkka Rzzz -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] How to animate remove() and html() ?

2008-03-06 Thread Fabien Meghazi
Is there a way to animate remove() and html() like it's possible to hide(slow) ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: OT: how to benchmark user hardware?

2008-01-22 Thread Fabien Meghazi
should google about this one. But keep in mind that theoretically, there's no such as thing as hardware detection in javascript browser's implementation. (for the moment) -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Is there a way to hide the script

2008-01-21 Thread Fabien Meghazi
running on the client can be figured out by anyone who wants to take a deeper look into it. (Even flash's action script can be decompiled) Thinking like this will also improve the way you manage security in your apps. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM

[jQuery] Re: BBC Redesign

2008-01-02 Thread Fabien Meghazi
Looks like the long-overdue BBC redesign is using jQuery (and a metric ton of whitespace and internal CSS): http://www.bbc.co.uk/home/beta/ Using the portlets is slow as hell on my computer -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL

[jQuery] Re: server side jquery

2007-12-18 Thread Fabien Meghazi
context is pointless. Maybe it would help if you describe what you want to do. You could start an instance of firefox (remote mode) on the server and you can control the borwser from your application. I would be interesting to know what you want to do exactly. -- Fabien Meghazi Website: http

[jQuery] Re: server side jquery

2007-12-16 Thread Fabien Meghazi
forgot to put some smileys around ! -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: server side jquery

2007-12-16 Thread Fabien Meghazi
with a jQuery like structure. When I have to deal with xml in a server side app, I can't stop telling me that such a module would be great. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: server side jquery

2007-12-15 Thread Fabien Meghazi
side AJAX (Active Java And X-Ray) ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: jChess

2007-12-08 Thread Fabien Meghazi
/speciaux.php -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: AJAX Security

2007-11-23 Thread Fabien Meghazi
1. Non AJAX User need to select a username, fill in the captcha, and submit the form = no automation possible as need to fill in the captcahe You can validate Captchas via ajax... Exactly, this is where I would like to go ;-) Just include captchas in your api. -- Fabien Meghazi

[jQuery] Re: AJAX Security

2007-11-22 Thread Fabien Meghazi
=FamilyName=ApiName=ValidateFields1763407 Yes this is a bad method, but you're not forced to do something bad. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: AJAX Security

2007-11-20 Thread Fabien Meghazi
between your worries about an ajax application and a non-ajax application. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Release: jQuery Validation plugin 1.1.1

2007-10-18 Thread Fabien Meghazi
jquery.validate.js (line 875) -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Bind event that should be executed first

2007-10-17 Thread Fabien Meghazi
for validator so it will focus the first error field in case validate fails ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Bind event that should be executed first

2007-10-04 Thread Fabien Meghazi
event and rebind it with my stuff first then calling previous bindings functions, it would do what I want. Do you think it is possible ? Jörn, Do you bind submit buttons onclick or form's onsubmit for validation ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM

[jQuery] Bind event that should be executed first

2007-10-03 Thread Fabien Meghazi
Hi all, I have to bind an event of type submit to a form but I have to make sure that the function binded will be executed before other submit bindings. Is it possible with jQuery ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Bind event that should be executed first

2007-10-03 Thread Fabien Meghazi
value of the textarea before other plugin's submit bindings are triggered. Is there a solution for that ? Even if it's pure javascript outside jQuery's api. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Bind event that should be executed first

2007-10-03 Thread Fabien Meghazi
$(#myform).submit(function() { // do your textarea thing here var v = $(this).validate(validateoptionshere); In fact my stuff is a plugin for fck editor so I want it to to be unobstrusive. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL

[jQuery] Re: Bind event that should be executed first

2007-10-03 Thread Fabien Meghazi
I kept apart ? Maybe what I say is silly, I don't know -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Avoid enter keypress to submit form

2007-09-25 Thread Fabien Meghazi
plugin for this ? Regards. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-23 Thread Fabien Meghazi
at it. keep you informed -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-23 Thread Fabien Meghazi
document.styleSheets like the old version and support for :focus :after like the new one. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-23 Thread Fabien Meghazi
May I ask you why you are fetching inline/remote css in the updated version of your script instead if keeping using document.styleSheets ? Ok, understood, you're doing this because of :after As I'm not using it, I will use the old version with just support for :hover :focus -- Fabien

[jQuery] Re: overide or deleting events

2007-09-22 Thread Fabien Meghazi
by the way is there a way to check if an object has bind to a certain events? You have event namespaces in jQuery 1.2 http://www.learningjquery.com/2007/09/namespace-your-events -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Image + map area + mouseout event

2007-09-21 Thread Fabien Meghazi
doStuff() function but it's not an elegant solution and I even don't know how to do this. Anyway, if there's no solution I'll be forced to do it so any hint about this is welcome. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-21 Thread Fabien Meghazi
) { $(table tr).hover(function() { $(this).addClass(hover); }, function() { $(this).removeClass(hover); }); } laying everywhere in my pages ;-) -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-21 Thread Fabien Meghazi
) { newStyleSheet.addRule(cssRules[i][0], ruledef); } } } }; -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-21 Thread Fabien Meghazi
= 0, ii = cssRules.length; i ii; i++) { var ruledef = cssRules[i][1]; if (ruledef.length != 0) { newStyleSheet.addRule(cssRules[i][0], ruledef); } } } }; -- Fabien

[jQuery] Image + map area + mouseout event

2007-09-20 Thread Fabien Meghazi
because of those event bubbling/capturing I never understoof how to deal with). I tried event.stopPropagation() and event.preventDefault() without success. Is there a way to avoid that behaviour ? -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Image + map area + mouseout event

2007-09-20 Thread Fabien Meghazi
Try adding return false; - Already tried too -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Image + map area + mouseout event

2007-09-20 Thread Fabien Meghazi
Maybe you can bind a mouseover event to the map areas, that would do nothing but return false. This may keep the mouseout from firing when you mouseover an area -- Alreadt tried it too :( I'll try to put a test case online -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL

[jQuery] Selecting previous elements

2007-09-03 Thread Fabien Meghazi
this ? I was thinking about $(this).parent().find(li).lt(X) but X would be the index of current element (C) and I don't know how to get it. Besides, I'm sure there's a faster way I'm not yet aware of. Thanks for you help. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED

[jQuery] BlockUI inside click()

2007-06-15 Thread Fabien Meghazi
before I go nuts ? Console log output : # I click on row with id 618 : 618 # first console log 618 # second console log # now I click on row with id 620 620 # first console log 618 # second console log Thanks. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL

[jQuery] Re: BlockUI inside click()

2007-06-15 Thread Fabien Meghazi
Try adding this to your yes click handler code: $(this).unbind('click'); Like this ? $(#modal_yes).click(function() { $(this).unbind('click'); console.log(id);// second console log $.unblockUI(); }); If I do this, the effect is that the Yes button's click is

[jQuery] Re: BlockUI inside click()

2007-06-15 Thread Fabien Meghazi
the code is triggered. First time it is working ok. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: BlockUI inside click()

2007-06-15 Thread Fabien Meghazi
, and that things are messed up because events are registered before this clone() or something like that. -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: Validate plugin : is this a normal behaviour ?

2007-06-06 Thread Fabien Meghazi
All your plugins rocks !! They are all well written and well structured. /ass_kissing -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Selecting all but first-child

2007-04-24 Thread Fabien Meghazi
Hi all, What is the more elegant way to select all but first-child of a set of elements ? I tried $(div.myclass:not(first-child)).css(do, stuff); whithout success -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Fabien Meghazi
It's a clean 10 out of 10 from me. Yeah sure !! This is an excellent plugin ! Maybe adding ESC key mapping in order to close would be a plus.

[jQuery] Re: flash losing focus

2007-04-18 Thread Fabien Meghazi
hey, i got a swf with a game inside, the problem that some times when user plays in the game and press space or f12 or whatever... its scrolls down and stuff like that is there a way to make sure that allways the game will listen to the keys ? Hi, Could you point out what is the jQuery

[jQuery] Re: Is this a bug ?

2007-04-11 Thread Fabien Meghazi
I had a play around with it and the only thing I could figure out is that the first td tag is being stripped during the function you mentioned - $(a).html(ah); The only thing I can think of is that perhaps it is something to do with the way IE handles whitespace - I've put a copy of your test

[jQuery] Re: Is this a bug ?

2007-04-11 Thread Fabien Meghazi
Now I'm thinking ... Is there still some people using Internet Explorer ? ;-) On 4/11/07, Scott Sauyet [EMAIL PROTECTED] wrote: Fabien Meghazi wrote: Maybe I should fill a bug so jquery devs can take a look at this. It is a bizarre one. My little brain can't see anything to cause

[jQuery] Re: new plugin - columnManager

2007-04-11 Thread Fabien Meghazi
of columns preferences management. Good job! -- Fabien Meghazi Website: http://www.amigrave.com Email: [EMAIL PROTECTED] IM: [EMAIL PROTECTED]

[jQuery] Re: outerHTML and Firefox does not work

2007-04-10 Thread Fabien Meghazi
Correct. Only Internet Explorer supports outerHTML. Even innerHTML started off as a Microsoft only thing, but because it was used so widely other browsers have adopted it as a defacto standard. What are you trying to do that you need to use outerHTML? Hi everyone in this thead, I was about