Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<a onclick="javascript:func(this)" >here</a>

what does this mean in the script?

share|improve this question
7  
Super old question, but high google ranking! Do you maybe want to accept one of these answers? – Dave Oct 23 '12 at 12:44

5 Answers

In the case you are asking about, this represents the HTML DOM element.

So it would be the <a> element that was clicked on.

share|improve this answer

It refers to the element in the DOM to which the onclick attribute belongs:

<script type="text/javascript"
        src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
</script>
<script type="text/javascript">
function func(e) {
  $(e).text('there');
}
</script>
<a onclick="javascript:func(this)">here</a>

(This example uses jQuery.)

share|improve this answer

this referes to the object the onclick method belongs to. So inside func this would be the DOM node of the a element and this.innerText would be here.

share|improve this answer

When calling a function, the word "this" is a reference to the object that called the function.

In your example, it is a reference to the anchor element. At the other end, the function call then access member variables of the element through the parameter that was passed.

share|improve this answer

The value of event handler attributes such as onclick should just be JavaScript, without any "javascript:" prefix. The javascript: pseudo-protocol is used in a URL, for example:

<a href="javascript:func(this)">here</a>

You should use the onclick="func(this)" form in preference to this though. Also note that in my example above using the javascript: pseudo-protocol "this" will refer to the window object rather than the <a> element.

share|improve this answer
Interesting downvote, although I suppose strictly speaking this answer only offers advice around the question rather than directly answering the question. – Tim Down Oct 21 '12 at 22:13
Yea... you didn't really answer the question :-/ nothing personal! – Dave Oct 23 '12 at 10:48
@Dave: Fair enough. By the time I wrote this the main question was already answered. My answer should probably have been a comment but I suspect I may not have had enough rep to add a comment at the time. Live and learn. – Tim Down Oct 23 '12 at 11:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.