If I had a jQuery object and wanted to call itself, is there any better way of doing that then like…
$("#notes").text($("#notes").data("defaulttext"));
I mean… I know I can do something like
var $notes = $("#notes");
to speed up things a bit, but I was just wondering if there is any variable I could use that means "the object I am currently working on", instead of manually typing in the object name again.