yhubu Posted April 6, 2006 Share Posted April 6, 2006 Hi there, I have very very very basic Java Script knowledge and would like to write a script that will open a pop up window if any link within a certain div is clicked.Does anyone know of a good tutorial or something I can follow?I have this so far...<script language="javascript">var x = document.getElementsByTagName('a');for (var i=0;i<x.length;i++){ if (x[i].getAttribute('type') == 'popup') { x[i].onclick = function () { return pop(this.href) } x[i].title += ' (Popup)'; }}</script> Quote Link to comment Share on other sites More sharing options...
yhubu Posted April 11, 2006 Author Share Posted April 11, 2006 *bump* Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.