How do I make the window widget pop up in a drop down list?
1) Script Title: window widget
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...ndow/index.htm
3) Describe problem:
I want to make the window widget pop up from a drop down list
I have a basic drop down menu:
PHP Code:
<select name="menu">
<option value="#">blah</option>
<option value="#">blah</option>
<option value="http://example.htm">blah</option>
</select>
<a href="javascript:jumpMenu()"><IMG SRC="http://img36.picoodle.com/img/img36/8/6/29/f_heartm_abbd3e9.png" border=0></a>
</form></td>
and i want to make the window widget pop up from it, let's say:
PHP Code:
<a href="#" onClick="examplewin=dhtmlwindow.open('ASDF!', 'iframe', 'example.com', 'ASDF', 'width=1337px,height=666px,center=1'); return false">ASDF!</a>
So how would I?