So, my question in it's most basic form:
<div id="total"> 0 </div>
and what I'm hoping to accomplish with jQuery:
$(document).ready(function() {
if ("#total" > 2){
/*do something*/
}
});
I feel like this should be something relatively easy, but the syntax is escaping me. Any help would be extremely helpful. Thanks!
Rob