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(){
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
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?