Jump in an iframe
3 posts by 2 authors in: Forums > CMS Builder
Last Post: December 14, 2009 (RSS)
On this page I want results and standings to jump to a place in the iframe http://www.sbracing.org/eventresults.php
<a target="event" href="<?php echo $record['_link']#results1 ?>">Results |
The end results is I want this link jump in the inframe http://www.sbracing.org/eventresultsDetail.php?Santa-Teresa-Park-1#results1
I just dont know the correct syntax to do that.
Please advise & thanks
<a target="event" href="<?php echo $record['_link']#results1 ?>">Results |
The end results is I want this link jump in the inframe http://www.sbracing.org/eventresultsDetail.php?Santa-Teresa-Park-1#results1
I just dont know the correct syntax to do that.
Please advise & thanks
Patricia
www.thenetgirl.com
www.thenetgirl.com
Re: [thenetgirl] Jump in an iframe
By Donna - December 14, 2009
Hi Patricia!
Here's where you'll need to put the anchor:
<a target="event" href="<?php echo $record['_link'] ?>#results1">Results
So, the <?php ?> code is giving you the link, and the bit that you want goes right after the link, so we pop in the #results1 just after that (but before the end of the link itself.)
I hope this helps. :)
Here's where you'll need to put the anchor:
<a target="event" href="<?php echo $record['_link'] ?>#results1">Results
So, the <?php ?> code is giving you the link, and the bit that you want goes right after the link, so we pop in the #results1 just after that (but before the end of the link itself.)
I hope this helps. :)
Donna
--
support@interactivetools.com
--
support@interactivetools.com
Re: [Donna] Jump in an iframe
Perfect as always Donna
Thanks
Thanks
Patricia
www.thenetgirl.com
www.thenetgirl.com