var parent = $("#jcontent");
var button1 = parent(".button1")
How to select .button1
knowing it is inside the parent while not reusing #jcontent
?
I need to do this because I only want to pass the parent as parameter and to be able to cache it which is faster.