Every line of 'jquery popup on page load only once' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
5 function loadPopup(page_url){ 6 //loads popup only if it is disabled 7 if(popupStatus==0){ 8 jQuery("#backgroundPopup").css({ 9 "opacity": "0.7" 10 }); 11 jQuery("#backgroundPopup").fadeIn("slow"); 12 jQuery("#popupContent").fadeIn("slow"); 13 jQuery("#contentArea").attr("src", page_url); 14 popupStatus = 1; 15 } 16 }
81 private static onDocumentReady(callback: Function) { 82 jQuery(document).ready(callback); 83 }
4 function loadPopup() { 5 // loads popup only if it is disabled 6 if (popupStatus == 0) { 7 jQuery("#backgroundPopup").css({ 8 "opacity" : "0.7" 9 }); 10 jQuery("#backgroundPopup").fadeIn("slow"); 11 jQuery("#popupChooser").fadeIn("slow"); 12 popupStatus = 1; 13 } 14 }
344 _onLoad: function _onLoad() { 345 return this._launchPopup(); 346 }
42 function doPopups() 43 { 44 if (document.getElementsByTagName) 45 { 46 var links = document.getElementsByTagName("a"); 47 for (var i = 0; i < links.length; i++) 48 { 49 if (links[i].className.match("popup")) 50 { 51 links[i].onclick = function() 52 { 53 return popSecondary(this.getAttribute("href")); 54 }; 55 } 56 } 57 } 58 }
63 function loadPopup(src, options) { 64 var title = options.popupTitle || 'External Identity Provider User Authentication'; 65 var appearance = 'toolbar=no, scrollbars=yes, resizable=yes, ' + 66 'top=100, left=500, width=600, height=600'; 67 68 if (util.isIE11OrLess()) { 69 // IE<=11 doesn't fully support postMessage at time of writting. 70 // the following simple solution happened to solve the issue 71 // without adding another proxy layer which makes flow more complecated. 72 var winEl = window.open('/', title, appearance); 73 winEl.location.href = src; 74 return winEl; 75 } else { 76 return window.open(src, title, appearance); 77 } 78 }
37 function popup(page, width, height) { 38 window.open(page, '', "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+width+", height="+height+", left="+xcenter(width)+", top="+ycenter(height)); 39 }
122 function _allow_popups(callback) 123 { 124 _get_network_access_manager().AllowPopups(_get_function_body(callback)) 125 }
20 function onJqueryLoad() { 21 $(document).ready(function() { 22 $("button").click(function() { 23 setTimeout(function() { 24 // There might be several email windows. Each of 25 // them has a textfield with id em-0, em-1, .. 26 $("div[id^='aD-']").one('click', addSignature) 27 .one('focusin', addSignature); 28 }, 100); 29 }); 30 }); 31 }
4 function popUp(URL) { 5 day = new Date(); 6 id = day.getTime(); 7 eval("page = window.open(URL, 'xqdoccode', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=400,left = 412,top = 334');") 8 page.focus(); 9 }