Onclick does not pass Id or Element

250 Views Asked by At

I'm trying to pass the element or even the Id of the element over to my javascript function. I can not find my error. I did test to make sure the Onclick does go inside my JS function.

This is the Onclick html link:

<div class="true">
  <a class="tflink" id="q2t" href="#" onclick="check(this)">True</a>
</div>

This is my JS function:

function check(e)
{
    alert(e.Id);
}
1

There are 1 best solutions below

0
On BEST ANSWER

it's supposed to be e.id not e.Id

so it should look like this:

function check(e)
{ alert(e.id);}