Posts by Jean Hilgert • 13 points
1 post
-
1
votes3
answers149
viewsQ: How to delete a DIV if there is a word in another DIV in jQuery?
I’m trying to make the following condition: $(document).ready(function() { if($("#content .productName").html().indexOf("JBL","Oversound")==-1) { $("#pague-so").hide();} }); In this case, I want the…