sir, how to open the pop up window in javasript when page load without click on allowed on browser, autometically open the window, how can do this, please help me sir
1
Expert's answer
2013-08-22T11:54:24-0400
$(document).ready( function() {
loadPopupBox();
function loadPopupBox() { // To Load the Popupbox $('#popup_box').fadeIn("slow"); $("#container").css({ // this is just for style "opacity": "0.3" }); }
Comments
Leave a comment