Posts by Anderson dos Santos • 26 points
2 posts
-
1
votes2
answers73
viewsA: Add paragraph with jQuery
Good night! your script this way $("#btAdd").click(function(){ var texto = document.getElementById("t").value; $("#new").append("<p>"+texto+"</p>"); }); You need to add your Jquery this…
-
0
votes2
answers91
viewsA: How to hide thead when all tbody tr are hidden?
You can change your script like this: The method parents() is used to select the parent element table to hide, and the element tbody to check if you have the content searched.…