开发者

how to use the bounce effect in jquery

开发者 https://www.devze.com 2022-12-28 06:53 出处:网络
i have included the plugin and written code like if(page) { $.post(page,{},function(data){callBackFunction(data)}); }

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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消