[jQuery] Re: I need some help

2009-05-29 Thread waseem sabjee
Is it working properly now ? On Fri, May 29, 2009 at 1:46 PM, 破越 wrote: > > thank thank thank thank thank > >

[jQuery] Re: I need some help

2009-05-29 Thread 破越
thank thank thank thank thank

[jQuery] Re: I need some help

2009-05-28 Thread waseem sabjee
you have absolute elements directly embedded in other absolute elements I would put the arrow image before the end of the body tag note you should apply the css to the div wrapping the image. not the actual image. On Thu, May 28, 2009 at 4:25 PM, 破越 wrote: > > why my blog(bulid with j

[jQuery] Re: I need some help with basic thing

2008-02-16 Thread Carlos Antonio da Silva
FrEaKmAn escreveu: > $('a#addsuggest2').click(function() { > alert('working'); > }); > $('a#addsuggest').click(function() { > //alert('working'); > $('#message').html('add'); > }); > Add > > > what is wrong? When I click on second add link (addsuggest2) nothing > happens > >

[jQuery] Re: I need some help with basic thing

2008-02-16 Thread FrEaKmAn
thanks for reply. I was also able to solve the problem with livejquery... On 16 feb., 22:06, Karl Swedberg <[EMAIL PROTECTED]> wrote: > The problem here is that you are bind the "click" handler to > "#addsuggest2" when the document is first loaded, but that element > doesn't get created until you

[jQuery] Re: I need some help with basic thing

2008-02-16 Thread Karl Swedberg
The problem here is that you are bind the "click" handler to "#addsuggest2" when the document is first loaded, but that element doesn't get created until you click on "#addsuggest" Unlike with CSS, which allows you to set styles for non-existent elements that will be automatically applied

[jQuery] Re: I need some help with basic thing

2008-02-16 Thread FrEaKmAn
just as info, I have included all jquery files + jquery code is in $(document).ready(function(){ code here... });