1

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.

0

1 Answer 1

8

You could extend jQuery and create a custom method:

$.fn.someFunction = function() {
  return this.hide();
};

$('.element').someFunction();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div class="element">This should be hidden.</div>
<div class="element">This should be hidden.</div>

Internally .hide() will iterate over each element, but if you want to do this manually, you could just utilize the .each() method:

$.fn.someFunction = function() {
  return this.each(function() {
    // 'this' refers to the element here
  });
};
Sign up to request clarification or add additional context in comments.

1 Comment

Works great!Thank you!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.