solstice
08-15-2006, 07:07 AM
So, I think I may have asked this before, but is there any way to target a link to open in a specific div layer? Or do I have to use an iframe? Thanks.
|
View Full Version : Target to div? solstice 08-15-2006, 07:07 AM So, I think I may have asked this before, but is there any way to target a link to open in a specific div layer? Or do I have to use an iframe? Thanks. J to the izzosh 08-15-2006, 02:35 PM Well, remember that frames are like extra windows. You can easily load a document in a window; that is what they are designed to do. A div element, on the other hand, is just part of a document. You can't easily load your page into itself. The only way to load new content into a document is with advanced techniques like AJAX (http://www.xml.com/pub/a/2005/02/09/xml-http-request.html). Without those, you will have to resort to frames for the functionality you seek. |