Forum Moderators: open
<script src="jquery-latest.pack.js" type="text/javascript"></script>
<script src="thickbox.js" type="text/javascript"></script>
</head>
<body>
<a href="mycontent.html?height=500&width=400" class="thickbox" title="">Inline Content</a>
</body>
How can i get this to start automatically when the page loads?
<script>
$(document).ready(function(){
tb_show("","mycontent.html?height=500&width=400","");
});
</script>
Solution found here: [hobione.wordpress.com...]
Hope it helps someone else.