[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: 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] Re: animate : animable properties

2009-09-14 Thread Nico
possibilities, like animating colors for example. In this case the result should be : var myObjectFiltered = { height: '100px', width: '100px', color: 'red', 'margin-top': '25px' } anyone knows how to do this ? thanks Nico I'm coding a jQuery plugin to draw modal windows

[jQuery] Re: animate : animable properties

2009-09-14 Thread Nico
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] animate : animable properties

2009-09-04 Thread Nico
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
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. If there are lots

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

2009-07-09 Thread nico
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 situation nico wrote:Hi, Thank you for your answer. Yes, I also think it has nothing to do with Z-Index

[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

[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 div class=widget_portfolio ul li class=active div class=titleDuo

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

2009-04-23 Thread Nico
, Nico

[jQuery] Re: Jquery.media fails with querystring

2009-03-26 Thread Nico
doesn't handle anymore this kind of link. Any way to correct this ? thanks, Nico On 27 fév, 16:11, James Tindall james.tind...@gmail.com 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

[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] 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] 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: Hello, I'm using the latest version of Jquery (1.2) and I

[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: div id=container span a href=#My link/a /span /div I try something like $(this span a).html(it

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

2007-08-28 Thread Nico
: $(this).find('a').html(...); If you know the ID of the element you'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/28/07, Nico [EMAIL PROTECTED] wrote: Hello, I'm

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

2007-07-22 Thread Nico
$ /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] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
://www.site.com. Nico.

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

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

[jQuery] Jquery doesn't work with mod_rewrite ?

2007-07-21 Thread Nico
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 script element but none of them fixed my problem. Jquery.js is correctly loaded but I can't run any