vote up 0 vote down star

How can I program a Click event on an image?

flag

1 Answer

vote up 6 vote down check

Javascript Method:

Create a function

function myFunction() {
    //Do Something
}

Create event handler for your image:

<img OnClick="myFunction()" />

If you want to trigger a server side method then use asp:ImageButton which has an OnClick event.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.