user2688251
user2688251

Reputation:

Change the OnClick event using Javascript

I have an HTML anchor tag like

<a href="anchorid" onclick="callEvent(1)">

Here I call the Javascript function like

<script>
function callEvent(anchor) {
    alert("Anchor ID is - "+anchor);
    document.getElementById("anchorid").onClick = function () { callEvent(0) }; // BY using this code, update the onclick callEvent(0), like toggle
}
</script>

I wants to update the anchor tag like

<a href="anchorid" onclick="callEvent(0)">

When using this code, it is not updating as per my requirement.

 document.getElementById("anchorid").onClick = function () { callEvent(0) };

How do I get it to update?

Upvotes: 0

Views: 11909

Answers (7)

Akshay
Akshay

Reputation: 3866

Store the toggle value in tag itself and then use.

<script>
function callEvent(val) {
    var val = document.getElementById("myId").getAttribute('data-val');
    alert(val);
    // toggle value
    val = val==1?0:1;
    document.getElementById("myId").setAttribute('data-val',val);
}
</script>
<a id="myId" data-val="0" onClick="callEvent()">Click</a>

here value is stored in data-val value so that is toggled in the callEvent function itself, so no need to rebind the event.

See Example fiddle

Upvotes: 1

Voonic
Voonic

Reputation: 4785

try this, it may solve your problem demo Fiddle

Add id="anchorid" to your anchor tag

When you click it next time it will callEvent by argument 0,

function callEvent(anchor) {
    alert("Anchor ID is - "+anchor);
    var ele =  document.getElementById("anchorid");
    ele.setAttribute("onclick","callEvent(0)");

}

It will update your link like you wanted

<a href="anchorid" id="anchorid" onclick="callEvent(0)">

Upvotes: 0

ratnesh dwivedi
ratnesh dwivedi

Reputation: 352

try This:

var anchor= document.getElementById('anchorid');
  anchor.addEventListener('click', function() {
        callEvent(0);
    });

OR

$( "#anchorid" ).click(function() {
 callEvent(0);
});

if you only want changes passing parameter from 1 to 0 or vice verse then do this one:

 <input type="hidden" name="para" id="para" value="1" > 
    <a href="anchorid" onclick="callEvent($('#para').val())">



 $( "#anchorid" ).click(function() {
      if ($('#para').val()==1) {
        $('#para').val(0)
      } else {
        $('#para').val(1)
      }
    });

Upvotes: 0

Dexa
Dexa

Reputation: 1651

if you only change parameter of calling function then you dont have to change complete event. You can do it like this:

HTML

<a id="anchorid" href="#">click me !</a>

JS

<script>
var anchor = 1;

document.getElementById("anchorid").onclick = function(){
    alert("Anchor ID is: " + anchor);
    anchor = anchor == 1 ? 0 : 1; //toggle 0 and 1
}
<script>

Upvotes: 0

Sudhir Bastakoti
Sudhir Bastakoti

Reputation: 100205

for using document.getElementById("anchorid").. you need to have id in your element, which you currently dont have, try doing:

//add id to your anchor
<a href="javascript:void(0);" id="anchorid" onclick="return callEvent(1);">
    test
</a>

and js

<script type="text/javascript">
function callEvent(num) {
    alert("Anchor ID is - "+num);
    document.getElementById('anchorid').onclick = function () { callEvent(0) }; 
}
</script>

Upvotes: 2

Dardino
Dardino

Reputation: 173

Tested: http://jsfiddle.net/Yca5W/

document.getElementById("anchorid").onclick =
    function () {
        alert("clicked");
    };

Upvotes: 0

karaxuna
karaxuna

Reputation: 26940

try:

document.getElementById("anchorid").onclick

Better:

document.getElementById("anchorid").addEvenetListener('click', function(){

});

Upvotes: 0

Related Questions