Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to use text onclick to display images in javascript

$('img').click(function () { // on a click
  if($(this).attr('id') == '1') { // get the id attribute
    $('#div').html('Image with 1 was clicked'); // write the text
  } else { // else if
     // write something else for the 2
  }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #text #onclick #display #images #javascript
ADD COMMENT
Topic
Name
6+6 =