Hi
I'm creating an interface with JQuery tools, using the overlay functions.
So, I have a list of a tags that shows images in overlay
<a id="11" href="data/images/011.jpg">
<a id="12" href="data/images/012.jpg">
<a id="13" href="data/images/013.jpg">
<a id="14" href="data/images/014.jpg">
then I have an input box (without form tag) and I just want to write in there "11" and, clicking on a "show image" link, it goes in overlay Something like this:
<input type="text" id="searchBox" />
<a id="searchButton" href="#">Cerca</a>
An alert works doing:
$("#searchButton").click(function(){
alert($("#searchBox").val());
});
So, how can I "search" the image (trough the ID) and simulate a real click?
thanks!!! Teo