I have to compare two selectors and I was wondering why does this return false in firebug...and how do I compare two selectors
$('.product-info:last') == $('.product-info:last')
this is what I have to do
var previous = $('.product-info:visible');
if(previous == $('.product-info:last')){
return false;
}