How can i hide multiple variables in jQuery?
Right now i have this :
$("#sub-total-value-v").hide();
I was trying to do something like this :
$("#sub-total-value-v").$("#sub-total-value-v2").$("#sub-total-value-v3").hide();
So i want to hide multiple variables in 1 line instead of copy edit and paste this : $("#sub-total-value-v").hide();
to $("#sub-total-value-v2").hide();
etc.