[jQuery] Re: Hi i want to bind function after ajax call.

2009-05-28 Thread ryan.j
oh, nice one! i always though re-calling .live bound additional code to the original event. learn something new every day :) On May 28, 7:44 am, Ed Allen wrote: > Look at the .live() method. > > On May 27, 11:12 pm, msk wrote: > > > Hi All, > > in my scenario i have use class on an element an

[jQuery] Re: Hi i want to bind function after ajax call.

2009-05-28 Thread anotherh...@gmail.com
If you use live instead of bind your future DOM elements also get the event handlers attached. http://docs.jquery.com/Events/live On 28 mei, 08:12, msk wrote: > Hi All, > in my scenario i have use class on an element and attach function with > that class, > Now i am loading dynamic content into

[jQuery] Re: Hi i want to bind function after ajax call.

2009-05-28 Thread Ed Allen
Look at the .live() method. On May 27, 11:12 pm, msk wrote: > Hi All, > in my scenario i have use class on an element and attach function with > that class, > Now i am loading dynamic content into div .Problem is i want to bind > again all the events which was use with class.So is there any way

[jQuery] Re: Hi i want to bind function after ajax call.

2009-05-28 Thread anotherh...@gmail.com
What about using the live function instead of bind? http://docs.jquery.com/Events/live On 28 mei, 08:12, msk wrote: > Hi All, > in my scenario i have use class on an element and attach function with > that class, > Now i am loading dynamic content into div .Problem is i want to bind > again all

[jQuery] Re: Hi i want to bind function after ajax call.

2009-05-28 Thread Vikash
Use live() method to bind before the call itself. Since it supports future binding :-) Only there can be any problem if the event type is not supported by live() like focus, mouseover...etc for this i'm also searching the solution .. i hope my reply is going to help you :-) On May 28, 11:12 am,

[jQuery] Re: Hi i want to bind function after ajax call.

2009-05-28 Thread ryan.j
could you call .unbind() and then re bind them in the callback? On May 28, 7:12 am, msk wrote: > Hi All, > in my scenario i have use class on an element and attach function with > that class, > Now i am loading dynamic content into div .Problem is i want to bind > again all the events which was

[jQuery] Re: Hi !

2009-04-19 Thread 李民瑋
it's pretty good build by jquery

[jQuery] Re: Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread Brandon Aaron
It sounds like you might be trying to set css properties via the .attr method instead of the .css method. -- Brandon Aaron On Wed, Nov 26, 2008 at 10:23 AM, tukutela <[EMAIL PROTECTED]>wrote: > > Hi all, I have some additional information which I hope might be of > use. > > the function is passed

[jQuery] Re: Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread ricardobeat
Some detail about what function is being called and what it's trying to do could help. On Nov 26, 2:23 pm, tukutela <[EMAIL PROTECTED]> wrote: > Hi all, I have some additional information which I hope might be of > use. > > the function is passed the following variables: > name = color > value =

[jQuery] Re: Hi all, jquery issue (major) with IE - all versions

2008-11-26 Thread tukutela
Hi all, I have some additional information which I hope might be of use. the function is passed the following variables: name = color value = inherit unfortunately I'm not able to get the elem to help out more, anyone have any suggestions on how to debug? On Nov 26, 9:42 am, tukutela <[EMAIL P

[jQuery] Re: Hi all. How to define Chrome browser?

2008-11-20 Thread Mike Alsup
> How possible to define Chrome browser like other, for example Safafri: > if ($.browser.safari) { >         alert('This is Safari') >     } > > it intersting that chrome browser do same Alert >     "This is Safari' > > Question. > How to define only CHROME browser? $.browser.chrome = /Chrome/.t

[jQuery] Re: Hi all. How to define Chrome browser?

2008-11-20 Thread Liam Potter
That's because they both use the same rendering engine, WebKit. I'm not sure right now if you can single one from the other. mtest wrote: How possible to define Chrome browser like other, for example Safafri: if ($.browser.safari) { alert('This is Safari') } it intersting that chro

[jQuery] Re: Hi!

2008-05-23 Thread Scott Sauyet
Netcrawle wrote: Turns out i've been a total moron when "duplicating" the original input-element -> to a new anchor-element. I duplicated the ID as well. So the onclick was triggered it turns out, but wicket didn't do anything about it because it halted on behalf of 2 target elements instead of

[jQuery] Re: Hi!

2008-05-22 Thread Netcrawle
Hi Scott and thanks for your reply! I had initially given up on this, but your reply made me give it even some more effort to the issue. Turns out i've been a total moron when "duplicating" the original input-element -> to a new anchor-element. I duplicated the ID as well. So the onclick was trigg

[jQuery] Re: Hi!

2008-05-22 Thread Scott Sauyet
Netcrawle wrote: I'm having major trouble with regards to having to work with inline javascript-code generated by the Apache Wicket-framework for Java I've had some difficulty too getting Wicket to play nice with jQuery or vice-versa, and often done similar tricks. You code looks fine. One

[jQuery] Re: hi : need help with saving icon

2007-05-07 Thread Scott Sauyet
bingo wrote: I think this will work...but the problem is some of the libraries that I am using do not provide callback functionality..but definitely for most ajax stuff this will work.. If they do not provide callback functionality but do some asynchronous processing, there seems little you c

[jQuery] Re: hi : need help with saving icon

2007-05-07 Thread bingo
Hi Scott, I think this will work...but the problem is some of the libraries that I am using do not provide callback functionality..but definitely for most ajax stuff this will work.. Regards, bingo On May 3, 7:40 am, Scott Sauyet <[EMAIL PROTECTED]> wrote: > bingo wrote: > > I am jquery for now

[jQuery] Re: hi : need help with saving icon

2007-05-03 Thread Scott Sauyet
bingo wrote: I am jquery for now almost 3 months. But, one thing I am not able still figure out. This is more for a user convience. I want to let user know which divs will be updated after certain action. For this, I want to show a spinning wheel on the div that will be updated. But I am not sur