Aller au contenu | Aller au menu | Aller à la recherche


jQuery link click

You can't trigger click on a href link with .click(). It only call handler associate (if one), but not simulate mouse click user.

<a href="index.php?param=value" id="myLink">text link</a>
$("#myLink").click(); // doesn't work

// for use href location of link, use :
window.location.href = $("#myLink").attr("href");

// and for both : handler defined + href

$("#myLink").click();
window.location.href = $("#myLink").attr("href");

// or

if ($("#myLink").click)
    $("#myLink").click();
else
    window.location = $("#myLink").attr('href');

jquery click doesn't work on hyperlink

Ajouter un commentaire

Le code HTML est affiché comme du texte et les adresses web sont automatiquement transformées.

Fil des commentaires de ce billet