Are the following 2 pretty much the same, or one is better and why?
A)
$myLists.find(".panel").hide().end()
.find(".tabs a.active").removeClass("active").end()
.find($this.attr("href")).fadeIn(250);
B)
$myLists.find(".panel").hide();
$myLists.find(".tabs a.active").removeClass("active");
$myLists.find($this.attr("href")).fadeIn(250);