var elemTitle = $(this).attr('title');var tipContent = '<div class="tippyTip">'+elemTitle+'</div>';
$(element).append(tipContent);
$(".tippyTip").hide()
how would i turn something like this
into a jQuery object that i can apply things like hide() to before it ever shows up on the page?
Thanks!
Then you'll just need to target the element as normal