plugins - Reveal Jquery Popup On Page Load -
i have read through answers question has been asked previously, cannot work.
i have website uses reveal popup on click of link, works fine, on page want popup activate on page load. have no real background jquery please patient , thorough :)
thank in advance!
generally speaking when dom (document object model) ready, page has been constructed , it's safe manipulate it, know when happens should like:
$(function() { $('div#popup').fadein(200); });
$(function() { })
equivalent $(document).ready(function() { })
.
more info: http://api.jquery.com/ready/, http://learn.jquery.com/.
Comments
Post a Comment