Re: [jQuery] Click Even

2009-12-02 Thread JMcGinnis
y0, Not really, why do you need to/ or want to? you could do this $('#Play').click(function() { $.cookies.set('WCA.Player', 'Play', { path: '/' }) }) ha, j/k same thing, just one line. Could you just explain why you would like to do it a different way? or where you just wondering? shapper

Re: [jQuery] jquery, eval and javascript in Ajax response

2009-11-15 Thread JMcGinnis
have any questions on this code i gave you. -- JMcginnis Pofferbacco wrote: Hello, I need your help to solve an issue. I have: - page a: a page with a form - page b: a php page that output a result after a query to the database I use ajax to do the request to page b and I display

Re: [jQuery] Ajax call for each element

2009-11-15 Thread JMcGinnis
Hey, Have you thought about setting a key,value pair in your JSON being returned corrasponding too the url= + escape($ (this).attr(id) that your passing in, then on the callback just use $(#+myJson[:id]) or something like that? just a thought. GreatS wrote: Currently I go through a number of

Re: [jQuery] Any kind soul to help me figure out whats wrong?

2009-11-15 Thread JMcGinnis
Good thing you don't need to know anything about Jquery to solve this problem.. :clap: very simple fix, just add float: left; to your .gallery_demo li class and also remove the height style from that same class. -jmcginnis Brandon-71 wrote: Hi all, I have no training in jquery. Can

Re: [jQuery] jquery compatibility problem (easing)

2009-11-15 Thread JMcGinnis
first remove jQuery.easing.def = ‘easeOutBounce’; then replace function animate() { $('#newThread').animate({left:0}, 2000); } with function animate() { $('#newThread').animate({left: 0px}, 2000, 'easeOutBounce') } --JMcGinnis eveready wrote: I

Re: Re[jQuery] placing simplest javascript by Jqyuery does not work (in my case)

2009-11-13 Thread JMcGinnis
Considering that it works in FF but not IE and the code below looks fine, my guess is that IE is possibly throwing an error somewhere on your page, I would check first in the mouse_up function, but also check anything that runs before $('body').bind(mouseup,mouse_up) -- JMcG Ad-25 wrote: