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
Why don't you just assign class = "instance" to all of them and select them using $('.instance')?
class = "instance"
$('.instance')