Hi, I have two divs in my page placed next to each other by using float:left leftside div has vertical navigation bar. When one of the list item(link) is clicked, I want pdf document to open in the adjacent div. How can I say that div as target...... Code: <div id="showme" style="width:200px;float:left"> <ul style="padding:0;margin:0; list-style:none"> <li><a href="#">part1</a></li> <li><a href="#">part2</a></li> <li><a href="#">part3</a></li> <li><a href="#">part4</a></li> <li><a href="c:\test\hello.pdf">part5</a></li> </ul> </div> <div id="content" style="float:left; border:solid thin green; width:650px; height:500px">hello </div> when part 5 is clicked, I want hello.pdf to open (show) in content div tag. Is this possible. I appreciate your response. Thanks, PK
the only way to do that would be to create an iframe there named "content", and then set the target to target="content"