[jQuery] Re: Hot to remove or replace onclick function

2008-12-08 Thread David .Wu
thanks a lot, I figure it out this morning too. :) On Dec 8, 11:44 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > Much better now :D > > jQuery version of your script: > > > $(document).ready(function(){ > > $('#set').click(function(){

[jQuery] Re: Hot to remove or replace onclick function

2008-12-08 Thread ricardobeat
Much better now :D jQuery version of your script: $(document).ready(function(){ $('#set').click(function(){ //registers the event handler for #set $('#btn').click(function(){ //registers the event handler for #btn

[jQuery] Re: Hot to remove or replace onclick function

2008-12-07 Thread David .Wu
let me explain more clear if I want to cancel function in JavaScript, I can do something like this, but how to do the same thing in jQuery?