[jQuery] If user clicks in one place OR another place OR another place...
I currently have this function that works perfectly:
$("li[@rel='history']").click(function()
But I want to add areas to this click event like this:
$('li[@class^=productColor]').click(function()
What's the syntax for this?
Here's pseudo code for what I want to do if the above question is not
clear:
$("li[@rel='history']" OR 'li[@class^=productColor]').click(function()