Posts by Gabriel Bertola • 1 point
2 posts
-
-1
votes4
answers1102
viewsA: Catch Divs with certain class
You could do something like this: $('#delete').click(function(){ $('.classeSelecionada').remove(); }); When you click the delete button it removes all the elements that are with the "Selected" class…
-
-1
votes4
answers142
viewsA: Does calling dozens of classes in a system noticeably influence the performance of the application?
Performance will depend on how classes are used, how they are written, how they behave, and how they relate, in addition to the server features that host your application. Simply having class in the…