[jQuery] Re: detecting jQuery objects && "constructor" property

2009-09-17 Thread Nico
I just try a little change in jQuery source code, that made it well, and I met no bugs : In the jQuery.fn.init method, I just added the line : this.constructor = jQuery; This way, all jQuery objects have a "constructor" property and it equals jQuery Any arguments against this ? Nico

[jQuery] detecting jQuery objects && "constructor" property

2009-09-17 Thread Nico
Hi, When I create a jQuery Object, it's known by javascript as an object, and it behaves like a function. In some cases, I have to check if a variable is a jQuery object or not. Usually, to check a variable type, I use the "constructor" property (when I can't use typeof, which is not accurate).

[jQuery] Re: animate : animable properties

2009-09-14 Thread Nico
I don't want to do this. I'd like to be able to ask jQuery which properties can be animated, and build my filter table from this information. It should be possible to get this info, no ? How jQuery knows how to handle each property ? Nico

[jQuery] Re: animate : animable properties

2009-09-14 Thread Nico
x27;100px', 'margin-top': '25px' } But I know jQuery plugins can add some animations possibilities, like animating colors for example. In this case the result should be : var myObjectFiltered = { height: '100px', width: '100px', color:

[jQuery] animate : animable properties

2009-09-04 Thread Nico
move all "non-animable" properties. But to do this, I have to get a list of "animable" css properties. Does someone knows how I can manage to get this list ? is there something like this in jQuery ? Nico

[jQuery] Re: ie6/Z superfish navbar li submenu always above ul subsubmenu

2009-07-09 Thread nico
be double the value currently used for the sub ul .  Default > is 2.5em, so try 5em or adjust accordingly based on css you've modified > Again, posting a test case would be very helpful. Your original suggestion of > making browser go to 300px wide was very misleading as to actual s

[jQuery] Re: ie6/Z superfish navbar li submenu always above ul subsubmenu

2009-07-09 Thread nico
g to do with z-index in my opinion, you're expecting too > much in too little space.Seeing the live situation may help, can you post a > link? > nico wrote:Hi, I have a problem with the superfish menu in navbar mode and > ie6/7. The first submenu items are in a full width row. I

[jQuery] ie6/Z superfish navbar li submenu always above ul subsubmenu

2009-07-08 Thread nico
Hi, I have a problem with the superfish menu in navbar mode and ie6/7. The first submenu items are in a full width row. If there are lots of subitems i get two rows. If an item in the first row has a submenu it opens as dropdown (200px width) right below the item. This works good in all browser

[jQuery] Strange animate behaviour

2009-05-28 Thread Nico
I get this strange jumpy animate behaviour in IE7 And in FF, chrome the animation flickers after completion. http://87.253.136.51/~gosi/nl (click trough the slides) HTML Duo Vertaalburo 01

[jQuery] JQuery UI Accordion option "collapsible:true" not collapsing

2009-04-23 Thread Nico
CCC I would like the whole accordion to collapse upon mouseout, but collapsible:true doesn't seem to do this. Any suggestions? Many thanks, Nico

[jQuery] Re: Jquery.media fails with querystring

2009-03-26 Thread Nico
y way to correct this ? thanks, Nico On 27 fév, 16:11, James Tindall wrote: > Hi, > > If there's any kind of query string on the end of an flv file name in > the href of the element that is to be overwritten the media plugin > fails to overwrite the element with the embed

[jQuery] Smooth page auto scrolling - how to they do this?

2009-01-15 Thread Nico
I'm very impressed by this website http://www.blackestate.co.nz/ Does anyone know a jquery plugin that would allow that "smooth page auto scrolling" behaviour when you click the section links on the left hand side? thanks, n

[jQuery] Re: Invalid Argument in IE 7.0

2007-09-14 Thread Nico
This function is called by a plugin that i use : http://opiefoto.com/articles/photoslider. Nico. On 14 sep, 13:53, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > How are you using it? > > --Erik > > On 9/14/07, Nico <[EMAIL PROTECTED]> wrote: > > > &g

[jQuery] Invalid Argument in IE 7.0

2007-09-14 Thread Nico
Hello, I'm using the latest version of Jquery (1.2) and I need to use the "attr()" function. Unfortunately it doesn't work correctly with IE 7. I recieve a Javascript Error : "Invalid Argument, Line 883". Does anyone know how I can fix it ? Regards, Nico.

[jQuery] [Resolved] Re: How optimize $(this).children("span").children("a").html("it works");

2007-08-28 Thread Nico
;re looking under, you can do: > > > $('#container > span > a').html('it works'); > > > Or: > > > $('#container a').html('it works'); > > > Depending on what anchors you want. > > > --Erik > > > On 8/

[jQuery] How optimize $(this).children("span").children("a").html("it works");

2007-08-28 Thread Nico
Hello, I'm trying to optimize this selector: $(this).children("span").children("a").html("it works"); Because I think that these 2 .children are not "light" javascript My HTML: My link I try something like $(this > "span > a").html("it works"); But it doesn't wo

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
That works now :) The bug was because of the tag. Thank You ! Nico.

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
too. I can only use javascript when I am on http://www.site.com. Nico.

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
inscription.html$ /home/site/www/index.php?op=inscription [L] > RewriteRule ^inbox.html$ /home/site/www/index.php?op=zm_msg [L] > > RewriteCond %{HTTP_HOST} ^(www\.?)site.com [NC] > > RewriteRule ^accueil.html$ index.php [L] Nico.

[jQuery] Jquery doesn't work with mod_rewrite ?

2007-07-21 Thread Nico
ewrite and when I try to run >JavaScript scripts powered by JQuery, it doesn't work if it's a >rewritten URL and I can't fix that. > >Can you help me ? > >Thanks in advance, >Nico. I've tried to use absolute and relative path in my "src" attribute in my