/ Published in: JavaScript
Expand |
Embed | Plain Text
/* Put your below <head> */ <script type="text/javascript"> function go(loc, NewWind) { if (NewWind != "new") { self.location = "http://www." + loc } else { loc = "http://www." + loc window.open(loc, "", "width=500,height=400,left=350,top=200,toolbar,status,resizable,scrollbars,location") } } </script> /* This HTML */ This is simple write: <a href="javascript:go('beben-koben.blogspot.com','new')" title="Prodiggy of Head">My Blog</a> This is complete write: <a href="javascript:go('beben-koben.blogspot.com/','new')" onmouseover="window.status='http://beben-koben.blogspot.com/';return true;" onmouseout="window.status=' ';return true;">Prodiggy of Head</a> This is same windows: <a href="javascript:go('beben-koben.blogspot.com')" title="Same Windows">Same Windows</a>
You need to login to post a comment.
