Is there any performance difference between using two separate calls to hide two elements, or would it be more/less efficient to use only 1 statement? Is there any practical difference?
$('#container1').hide();
$('#container2').hide();
vs:
$('#container1, #container2').hide();
Also, which do you think is more readable?