I have a click function on the following element:
$('#make article > a, #latestInner article > a').click(function (e) {...});
Now I want to bind the clicking of the above to the following:
$('#make article h4 a, #latestInner article h4 a, #models article h4 a').click(function (e) {...});
so that clicking on:
#make article > a, #latestInner article > a
will be as if I have clicked on:
#make article h4 a, #latestInner article h4 a, #models article h4 a