The tab-review opens when someone clicks on reviews or on give a review, but this happens lower on the page so I have to add a scroll function. I tried to accomplish this by in product.tpl adding the below code to the click function (2 times)
Code: Select all
document.getElementById('tab-review').scrollIntoView();
Code: Select all
<a href="" onclick="$('a[href=\'#tab-review\']').trigger('click'); return false;"><?php echo $reviews; ?></a> / <a href="" onclick="$('a[href=\'#tab-review\']').trigger('click'); return false;"><?php echo $text_write; ?></a></p>
Code: Select all
<a href="" onclick=" document.getElementById('tab-review').scrollIntoView();$('a[href=\'#tab-review\']').trigger('click'); return false;"><?php echo $reviews; ?></a> / <a href="" onclick=" document.getElementById('tab-review').scrollIntoView();$('a[href=\'#tab-review\']').trigger('click'); return false;"><?php echo $text_write; ?></a></p>
How can I fix this so the links work properly immediately?