I have a link with an id 1, when clicked a facebox popup window appears, and in the popup there is select element, I would like to add the same link id to the select element of the popup
i want to append the link id to the select element inside the popup window.
link
<a class="browse" href="some link" id="1">browse</a>
popup window
<div id="facebox"
<div class="popup">
<div align="center">
<form name="keys">
<select class="browse_window" name="keyvalue" size="20">
<option>0</option>
<option>1</option>
</select>
</form>'
</div>
</div>
</div>