# Jump menu, anchors, i-frame

**URL:** https://forum.kirupa.com/t/jump-menu-anchors-i-frame/27387
**Category:** Uncategorized
**Created:** [August 1, 2003, 7:08pm UTC](https://forum.kirupa.com/t/jump-menu-anchors-i-frame/27387 "2003-08-01T19:08:21Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![darley](https://avatars.discourse-cdn.com/v4/letter/d/eb9ed0/32.png) [@darley](https://forum.kirupa.com/u/darley)
#### Post date: [August 1, 2003, 7:08pm UTC](https://forum.kirupa.com/t/jump-menu-anchors-i-frame/27387/1 "2003-08-01T19:08:21Z")

</div>

i have a jump menu with links in it. upon choosing the link i would like to jump to an anchor in the i-frame. i have tried the standard way for text links:

\<option value = glossary.htm#pantone target=“defs”\>Pantone

with glossary.htm being the contents for the i-frame, pantone being the anchor name and defs being the name of the i-frame.

any ideas?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 3, 2003, 7:59pm UTC](https://forum.kirupa.com/t/jump-menu-anchors-i-frame/27387/2 "2003-08-03T19:59:06Z")

</div>

hard to know without seeing the HTML - post a link?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 4, 2003, 4:23pm UTC](https://forum.kirupa.com/t/jump-menu-anchors-i-frame/27387/3 "2003-08-04T16:23:44Z")

</div>

well i figured it out…

in the form area for the jump menu i found the area that i should change, here it is.

```php
<select name="glossary" onChange="MM_jumpMenu('defs',this)">
here is the area where the items in the menu go
</select>
          <input type="button" name="Button1" value="Go" onClick="MM_jumpMenuGo('glossary','defs')">

```

the area defined as defs did the job in targeting the i-frame named defs.
