The following hides images that have Stud_Btn
in their id.
$('img[id^="Stud_Btn"]').hide();
even if I have Stud_Btn1234
and Stud_Btn234
, it will still hide it. What does "^" really mean?
Can it not only be used for comparison? Or does it have other uses?