0

Can I select more than one image button ? for example : I have 4 image buttons, each image button has a different function onclick

Image_Button_1 = button1()
Image_Button_2 = button2() 
Image_Button_3 = button3() 
Image_Button_4 = button4()

I want to make a program for running every function.. if I select Image_Button_1 and Image_Button_3, button1() and button3() will run

how to select more than image button using shift/ctrl click or anything...

Daniel Casserly
  • 3,442
  • 2
  • 26
  • 59
Michael
  • 33
  • 5
  • Please be more precise. Is this a Javascript question or C# Question.? – Riddler May 18 '15 at 09:05
  • ehm, maybe Javascript and C# because button1() and button3() is C# function and then I don't know how to select more than 1 image button in asp.net so I think I need jquery / javascript function for help my problem... – Michael May 18 '15 at 09:08

1 Answers1

0

If you are using javascript or jquery then event delegation might help you

What is DOM Event delegation?

Community
  • 1
  • 1
hengecyche
  • 229
  • 2
  • 15