I want to call a function to show and modify content like this:
$('#element').someFunction();
I wrote this function:
function someFunction(){
$(this).show();
//other stuff
}
But this don't work. Can someone give me a hint how to solve this.