/ Published in: JavaScript
Expand |
Embed | Plain Text
$(document).ready(function(){ $('.classname').bind('click',function(e){popwindow(e)}); }); function popwindow(e){ e.preventDefault(); var href=$(e.target).attr('href'); window.open(href,'','menubar=1,location=1,toolbar=1,width=1024,height=768'); };
You need to login to post a comment.
