Skip to content Skip to sidebar Skip to footer

How To Call A Href By Onclick Event Of A Button?

I have the following a href I use to open jquery dialogs, which works fine. Basically, the openDialog class has attached the jquery dialog code:

Solution 1:

If I get you question right then may be jQuery trigger()(?) is what you are looking for. Example:

<buttonid="bt">Click</button><ahref="example.com"id="ex">Triggerable link</a><scripttype="text/javascript">
  $('#bt').click(function() {
       $('#ex').click();
  });
</script>

Solution 2:

You can emulate the click by

 $('#link').click();//No arguments inside the call.

This will emulate the click event on the link. It is the same as clicking on the link. This ofcourse won't change the location if you have an event handler that stops the default behavior of the link If you want to redirect to the href attribute you can use:

location.href=$('#link').attr('href');

So if you want to call this on click of a button.

$('#button').click(function(){$('#link').click();
   location.href=$('#link').attr('href');//In case the page doesn't change although you want it to
}

Post a Comment for "How To Call A Href By Onclick Event Of A Button?"