If I have an unknown amount of identifiers sharing a specific naming-scheme, is there a way to grab them all at once using jQuery?
// These are the IDs I\'d
Use the carrot.
$("div[id^=instance]").hide();
jsFiddle example