[jQuery] Re: Unknown pseudo-class or pseudo-element 'odd'.

2009-11-20 Thread pierre
I'm seing the same behaviour on FF3.5.5 Windows with the example page above or with my test page (I'm using :visible selector). I also use jquery 1.3.2. I actually get it on the document page on jquery.com: Warning: Unknown pseudo-class or pseudo-element 'visible'. Source File: http://docs.jquery.

[jQuery] Re: Maybe Jquery ? Bug with firefox 3.5

2009-09-07 Thread Pierre Bellan
acebook, googlesyndication, etc... > ) > > If someone would have a clue on this problem, i would appreciate him. > > Thanks > > Pierre >

[jQuery] Re: sending form’s button’s value

2009-08-20 Thread Pierre Bellan
(this).closest('#REQUESTFORM').serialize()+'&respond='+$(this).attr('value'), Maybe val() works on button too, but i'm not sure Pierre 2009/8/19 efet > > User's data posted once user click either of buttons with same > name="respond"

[jQuery] Maybe Jquery ? Bug with firefox 3.5

2009-08-19 Thread Pierre Bellan
appreciate him. Thanks Pierre

[jQuery] Re: Question about 'ready' event

2009-06-12 Thread Pierre Bellan
e the call and you must stop the periodic call Fast solution, but not very clean. Maybe someone had a better idea ? Pierre 2009/6/12 Bernad > > Hello everybody. > > I have one problem but I can't solve it. > > I have one page with 3 iframes. The first iframe has a 're

[jQuery] Re: remove one element in an array

2009-06-12 Thread Pierre Bellan
m/Events/live ) Pierre 2009/6/12 fabrice.regnier > > Hi all, > > When i click once on a button, i create one picture on the fly. And so > on. It works ok. > > Then, using livequery, when i click on one of the all created > pictures, i would like to see it removed. But it appe

[jQuery] Re: click function on anchor element

2009-06-11 Thread Pierre Bellan
Hi, I think that is because of the alert function. It needs a string and maybe for an anchor object, jquery introduces a toString method. With the console of firebug, there are no differences between anchor and images Pierre 2009/6/11 bensan...@gmail.com > > Hi all, > > I'

[jQuery] Re: notify/update client when change on the server

2009-06-11 Thread Pierre Bellan
ample, you can store a value on text-plain file to indicate if an update is necessary. In this way, your database wouldn't blow up if your are 20 peoples on your chat room Pierre 2009/6/11 ch2450 > > Hi all, > > I'm trying to implement a simple chatting website. >

[jQuery] Re: Need to move selection from one box to another box

2009-06-10 Thread Pierre Bellan
Nowadays, the web is "2.0", so you can use a drag and drop system, which is more ergonomic for your users. Check the jquery-ui project ( http://jqueryui.com/ ), there are some example that correspond exactly to your problem. Pierre 2009/6/10 webspee...@gmail.com > > Hey all.

[jQuery] Re: :eq versus eq()

2009-06-10 Thread Pierre Bellan
With the traversing method, you can match a set of elements then select, for example, the third one $('.myclass,#myid').eq(2) I didn't use the traversing method but i think that is one of possible usage Pierre 2009/6/10 Maujor > > > According jQuery documentation [1

[jQuery] Re: Removing Single Option from Select

2009-03-27 Thread Pierre Bellan
Hi, you select your select : $('#myselect'); then u find the option with the value -1 : $('#myselect').find('option[value=-1]') or $('#myselect option[value="-1"]'); finally you removed it $('#myselect option[value="-1"]').r

[jQuery] Re: wait end of slideUp()

2009-02-14 Thread FCY-Pierre
Hi, The slideUp effect has a callback function. It was called when the animation is complete. So, this code should works $('#myDiv').slideUp('slow',function(){$('myTopDiv').addClass('myclass');}); pierre Alain Roger a écrit : Hi, i have 2 divs (

[jQuery] Re: The last script on ready function

2008-11-25 Thread Pierre Bellan
t;[EMAIL PROTECTED]> > > You can also run it on page load (as opposed to DOM ready): > > $(window).load(function(){ > > // scripts to run after page load here > > }); > > - ricardo > > On Nov 25, 8:08 am, "Pierre Bellan" <[EMAIL PROTECTED]> wrot

[jQuery] Re: find table rows that contains text

2008-11-25 Thread Pierre Bellan
} }); The text() method removes all html tags, very useful here. The trim() function was a jquery addon, very useful too Pierre Samuel Goldwyn - "I'm willing to admit that I may not always be right, but I am never wrong." 2008/11/25 Sridhar <[EMAIL PROTECTED]> >

[jQuery] Re: Doing Ajax call to a page that requires authentication

2008-11-25 Thread Pierre Bellan
: function(msg){ alert( "Data Saved: " + msg ); } }); If the authentification is based on .htaccess, you can use username/password option Pierre W. C. Fields - "I cook with wine, sometimes I even add it to the food." 2008/11/25 TheBlueSky <[EMAIL PROTECTED]&g

[jQuery] Re: The last script on ready function

2008-11-25 Thread Pierre Bellan
Hi, Put it at the very bottom of your page. $(document).ready are executed in LILO order. I think that's the only thing it which always works. Pierre Rodney Dangerfield - "I looked up my family tree and found out I was the sap." 2008/11/25 MarcelloP <[EMAIL PROTECTED]>

[jQuery] Re: set default action for all links

2008-11-21 Thread Pierre Bellan
Hi, I don't know what lightbox is but it's not important. Like you said, you just need an selector for all links. $('a').click(function(){ myUrl = $(this).attr('href'); openLightbox(myUrl); }); I think this code works, but i have not test it. Pierre Yogi Berr

[jQuery] Re: NEWB ALERT: Why when calling a pre-existing function from .click() is it executed on page load?

2008-11-21 Thread Pierre Bellan
Hi, In your code, i think you call the function. You only need to put the name of the function. The code you wrote execute the function quickSearch then put the result as the name of the function to bind to click Like this : $("#qSearchBut").click(quickSearch); Pierre Lily Toml

[jQuery] Re: How to add html do a div properly? (html(), val(), or text() ?)

2008-11-19 Thread Pierre Bellan
for getting the value and php:html_entities for setting. Pierre Fred Allen - "An associate producer is the only guy in Hollywood who will associate with a producer." 2008/11/19 ginko100 <[EMAIL PROTECTED]> > > Hello, > > what's the difference between: > h

[jQuery] Re: Rounding numbers

2008-11-19 Thread Pierre Bellan
Hi, In javascript, you have the Math object. This is the perfect solution for your problem Bye Pierre Lily Tomlin - "The trouble with the rat race is that even if you win, you're still a rat." 2008/11/19 less than zero <[EMAIL PROTECTED]> > > > Hi, > > Is

[jQuery] Re: newbies question

2008-11-19 Thread Pierre Bellan
Hi, With regular expressions you can simplify it : For example, if ( test1.match(/^[a-z]8$/) ) { } Pierre Lily Tomlin - "The trouble with the rat race is that even if you win, you're still a rat." 2008/11/19 Alfredo Alessandrini <[EMAIL PROTECTED]> > > Hi, &

[jQuery] Re: Tool tip advice

2008-02-22 Thread Pierre
You can try Simple Tooltip, for create simple and unobtrusive tooltips : http://www.pierrebertet.net/projects/jquery_simpletooltip/ It detects window borders, and has no limitations for design and structure, because any element can be a tooltip. The documentation is only in french for the momen

[jQuery] load a page, then use ajax to load html + script inside that page

2007-12-26 Thread Pierre
ome people on the list worked around that by using a setTimeout, but honestly I'd rather not do that. So, if someone knows how to do that the right way, please let me know. Also, if what I am trying to do is downright impossible, let me know too please. Happy Holidays!! Pierre

[jQuery] Re: jquery.com down?

2007-12-26 Thread Pierre
Seems like database issue (got a database timeout error when trying to access the wiki). Worked the second time after a while tho On Dec 26, 11:23 am, traunic <[EMAIL PROTECTED]> wrote: > getting timeouts when attempting to go tohttp://jquery.com/