Execute Link Using Javascript
The following link opens a video when clicked: ' rel='vidbox' title='
Solution 1:
It is not possible to click on a link using javascript / jquery. You can trigger the bound events using $('#m2').click()
but it will not open the url. What you could do is, use document.location.href to open the page
document.location.href = document.getElementById('m2').href;
Post a Comment for "Execute Link Using Javascript"