I was wondering about the different ways of using a JQuery function on a variable
like I know this one
$.DoThis(variable);
but is there a way to call it at the end like normal Javascript functions
variable.$.DoThis();
haha I know this sounds stupid but I need to ask somewhere. Thanks!
You probably mean
This implies that variable is
If it something else, all bets are off.