how to use the bounce effect in jquery

Posted by pradeep on Stack Overflow See other posts from Stack Overflow or by pradeep
Published on 2010-04-28T18:03:30Z Indexed on 2010/04/28 18:07 UTC
Read the original article Hit count: 123

Filed under:

i have included the plugin and written code like

if(page) { $.post(page,{},function(data){callBackFunction(data)}); }

function callBackFunction(data)
{

$('.page_change').html(data);
$('.page_change').effect("bounce", { times:3 }, 300);
$('#submit_show').show();
}

The data change is happening but the bouce effect i am not getting..how do i solve this issue..

© Stack Overflow or respective owner

Related posts about jQuery