tags:

views:

61

answers:

1

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..

A: 

.effect() is in jQuery UI. Are you including the jQuery UI file?

dtryan
yeah included all of them..whole package.
pradeep
@pradeep: what package is that?
Matt Ellen