This is my current code in order for each of my
$('#fbNameS1').tipsy({fade: true});
$('#fbNameS2').tipsy({fade: true});
...
$('#fbNameS207').tipsy({fade: true});
$('#fbNameS208').tipsy({fade: true});
Now i've seen some jQuery code where they combined DIV ID's together. Before i go and do that to all 209 tipsy's i would like a comfirmation that this would work for the tipsy tooltips?
$('#fbNameS1','#fbNameS2',....,'#fbNameS207','#fbNameS208').tipsy({fade: true});
class="class_name"attribute, that way you do not have to write all that just do:$(".class_name").tipsy({fade: true});nice and easy :) avoiding pain of 209 element id since Jquery was born :P hope this help! – Tats_innit May 20 '12 at 8:34