| | Discussion and Rate this Resource Overall Rating: 3.1 | cgisackson on Jan 25, 2002 at 1:19:57 PM | Rating: 5 | I've tried to hack this on my own and failed just last week. Now I can remove those ugly <A > anchors and put our standard buttons on the forms.
Thanks a lot. | | dgwade on Sep 25, 2001 at 5:51:04 AM | No Rating | How does this differ in effect from the crossbrowser method of naming frames
<frameset cols="160px,*"> <frame name="Controls" ...> <frameset rows="480px,*"> <frame name="Main" ...> <frame name="working" ...> </frameset> </frameset>
and then doing similar scripting as
<script language="javascript"> function doTargeting(url,t) { eval("parent." + t + ".document.location.href = url"); } </script>
followed by links:
<a href="#" onClick="doTargeting('test1.html','Main')">Test1/Main</a><br> <a href="#" onClick="doTargeting('test1.html','Controls')">Test1/Controls</a><br> <a href="#" onClick="doTargeting('test2.html','Main')">Test2/Main</a><br>
If something additional and useful is being accomplished via the IE4 code only, then I missed it. | | netDet on Sep 24, 2001 at 5:44:25 PM | Rating: 5 | Great! I 've searched for a script to replace target and href programatically. And voilá found in five Minutes.
thx-a-lot
| | joannel on Jul 7, 2000 at 3:02:27 AM | Rating: 1 | | nonavel on Nov 25, 1999 at 7:22:31 AM | Rating: 1 | Code looks too messy & unnecessarily complicated.
For Mongo:
Frames can get messy quickly, if you nest too many of them. It gets difficult to track what the heck is going on :) Lord I know I get lost sometimes.
To target child frames try using bookmarks nested inside your <a href> tag like this:
<a href="URL STUFF" target="_self#bookmark here">
This way the child frame will open in the same frame that the ref was in and it will take you directly the referenced child. The only drawback of this is to be certain that you have a properly named frame. Otherwise when the viewer clicks the "back" button the target will open in a new window. The way I get around that is to put a back link in the current frame (and hope they use it).
Works for me. | | milamber on Nov 20, 1999 at 8:35:14 PM | Rating: 1 | why no user href and target?
pointless.... |
More Ratings/ Comments
To rate and comment on a resource, you must first logon.
If you are not registered, please register yourself to become a member of the SiteExperts.community.
|