Can someone please solve this? (Basic HTML)

edzai

New Member
I am using this code to link an embedded .swf file to another page inside an iframe : \[code\]<div onmousedown="window.location.href='http://www.pagewhichopens.com'" height=26 width=100> <object height=26 width=100> <param name="movie" value="http://www.bcd.com/embeddedfile.swf"> <param name="wmode" value="http://stackoverflow.com/questions/12770537/transparent" /> <embed wmode=transparent allowfullscreen="true" allowscriptaccess="always" src="http://www.bcd.com/embeddedfile.swf" height=26 width=100></embed> </object></div>\[/code\]But when I cick on the swf the another page opens inside that iframe only which I don't want, I want it to open in the whole browser... which can be done by inserting target="_parent", but where should I put it?
 
Back
Top