I am doing the following :
$(function() {
var $txt = $("#text1");
callMe($txt, $txt.val());
});
function callMe(t, vlue) {
t.html(vlue)
}
I will be calling the callMe() function multiple times.
Is it Ok to do the way i have shown or is there a better way?