I'm trying to trigger click event on hyperlink with jQuery like the way below. Hyperlink does not have any id but it does have css class:
$(document).ready(function () {
$('.cssbuttongo').trigger('click');
});
The function above is not working. This is the hyperlink:
<a href="hyperlinkurl" class="cssbuttongo">hyperlink anchor</a>