Hi All,
In our application we are using set of images as slides. If we click one image we want to get the id of the in the same page. i have tried by using the following code.
code: HTML:
<a id="100" href="#"> <img scr="..."/> </a>
...
JQUERY code:
$("div.alb a").click(function() {
});
Problem:
Without href="#" the click event is not working.
I want to get the id by clicking the image without using server control.
Without using server control is it possible to achieve this task.
Geetha.