I have a website where I'm trying to auto click on picture using jQuery when site is loaded. I'm using wordpress and the code is implemented in footer. The site is https://mobimania.si/trgovina/ovitek-print-gold-mandala-copy/ and the actual picture is in "IZBERI MOTIV" section.
I have code but for some reason it doesn't work
jQuery("document").ready(function($) {
setTimeout(function() {
$("#mCSB_4.fpd-grid.fpd-item>picture").trigger('click');
}, 10);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<div id="mCSB_4" class="mCustomScrollBox mCS-light mCSB_vertical mCSB_outside" style="max-height: none;" tabindex="0">
<div id="mCSB_4_container" class="mCSB_container mCS_y_hidden mCS_no_scrollbar_y" style="position:relative; top:0; left:0;" dir="ltr">
<div class="fpd-grid fpd-grid-contain fpd-padding">
<div class="fpd-item fpd-hidden" data-title="252105" data-source="/wp-content/uploads/2019/02/252105-e1551204819312.jpg" data-search="252105">
<picture data-img="/wp-content/uploads/2019/02/252105-e1551204819312-188x300.jpg"></picture>
</div>
</div>
</div>
</div>
You first need to fix
<script>jQuery function() {
I suggest
Your selector is wrong. You are trying to click a direct child of something that has id=mCSB_4 and both
.fpd-grid.fpd-item
classesThese will all work:
$("#mCSB_4").find("picture").trigger('click');
$("#mCSB_4 > .mCSB_container > .fpd-grid>.fpd-item > picture").trigger('click');
direct descendants and
$("#mCSB_4 .mCSB_container .fpd-grid .fpd-item > picture").trigger('click');
using just the classes with spaces
NOTE This is assuming there is a click handler on that picture.