I tried a lot of variations of this but it doesn't seem to work.
<script type="text/javascript">
$(document).ready(function(){
$('#slide_click').trigger('click');
});
</script>
This should triggers a button with an onclick event when the document is ready
<button id="slide_click" onclick="gotoSlide(<?php echo $_GET["goto"] ?>)">Trigger</button>
The gotoSlide function needs an integer parameter, what it does is it should go to the specific slide on my gallery slider. But apparently it doesn't work. I can't seem to figure it out.
I'm using a jquery plugin for the slider called Advanced Slider. Am I using the trigger() function correctly?
gotoSlidedirectly indocument ready? – ExpExc Nov 29 '11 at 7:46gotoSlideand see if it actually gets called: jsfiddle.net/interdream/qFpFG – James Allardice Nov 29 '11 at 7:46function gotoSlide(index){ slider.gotoSlide(index); }I even put an alert in the gotoSlide() function just to see if it fires when the document is redy and it does. But it doesn't execute this:slider.gotoSlide(index);– Chester Sabado Nov 29 '11 at 8:09