Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

187
Views
how can create function anonymous javascript whit arguments this

I'm trying to perform an anonymous function with a this-type argument, with the aim that an element of DOM can occupy it.

javascript: (this is dynamically created at run time)

const example = function(this) { return this }

html:

<button onclick="example(this)" ><button>

result:

Uncaught SyntaxError: Unexpected token 'this'

how can I do it?, thanks!

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

As mentioned in the comments, this is a special keyword in JavaScript; when you call an object method, this contains the object that the method was called through.

Just use another variable name.

const example = function(el) { console.log(el.innerText); };
<button onclick="example(this)" >Click me</button>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!