I have a prgramme that generated sliding banners for vbulletin forums. It is working fine except that I cant make the iframe clickable. I have a javascript based slider banner, part of which looks like the following example: htmlstring="<iframe src=\"http://example.com/banner.jpg\" name=\"adpiframe\" id=\"adpiframe\" width=100% height=100% align=\"center\" Frameborder=\"0\" Scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>" new adp("template01",htmlstring,"blah blah"); adpTimer('template01','adpSlidein','show','','',3,''); It shows a banner allright as expected but want to make banner.jpg clickable so that it opens in a new window as a new page for specific url. Please let me know if you can do it and for how much? PS: Probably will take less than a minute for someone who is knowledgeable about javascript and iframes
I know its common sense but would this help?. <a href="page.html"><iframe src yourstufff><a href="page.html"></a></iframe></a> or in your case it would look like this. <a href="page.html"><iframe src=\"http://example.com/banner.jpg\" name=\"adpiframe\" id=\"adpiframe\" width=100% height=100% align=\"center\" Frameborder=\"0\" Scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe></a>
thx but it still did not work. I think it is being called for in another file that also needs to be modified so I am going to leave it as it is.