Show jQModal window on page load

2019-08-05 12:58发布

I'm playing with jQModal plugin and trying to display its window right after the page is loaded. I used this code in $(document).ready(function():

$('#letak').jqm({
    overlay: 70,
    autofire: true 
});

autofire setting should do the trick but unfortunately it doesn't work. Works perfectly fine when I click at trigger link.

Example: http://bz.machi.cz/

// Forgot to mention that there is a hidden View link on the page (when you press Ctrl + A you can see it).

Am I doing something wrong? Thanks a lot, Jakub

1条回答
我想做一个坏孩纸
2楼-- · 2019-08-05 13:39

Try the following. I also put together an example at jsFiddle.

$(document).ready(function() {
    $('#letax').jqm().jqmShow({overlay: 70});
});
查看更多
登录 后发表回答