I need help trying to figure out how to use .click() function for two different attributes.
$('#prev').click(function() {}
and
$('#image').click(function() {}
So how would I do an OR statement if user clicks on #prev and #image without writing two identical scripts?
Thanks!
or