/ Published in: jQuery
Expand |
Embed | Plain Text
$(document).ready(function() { $("a#linky").click(function() { var newdiv = document.createElement('div'); newdiv.setAttribute('id','ExternPopup'); newdiv.style.width = "300px"; newdiv.style.height = "100px"; newdiv.style.left = "100px"; newdiv.style.top = "100px"; newdiv.style.position = "absolute"; newdiv.style.background = "#FFFFFF"; newdiv.style.border = "1px solid #000000"; newdiv.innerHTML = 'Sie verlassen die Website nach <br/><a href="'+$(this).attr("href")+'"><b>'+$(this).attr("href")+"</b>"; newdiv.style.zIndex = '1000'; document.body.appendChild(newdiv); //setTimeout('window.open(\'http://www.mozilla.org\');', 5000) return false; }); });
You need to login to post a comment.
