How to set focus of a layout upon clicking on a hyperlink ?
Paste below code in user work form
<script>
function GI() {
const element = document.querySelector('.geninfo');
if (element) {
element.focus();
}
}.
function Taxonomy() {
const element = document.querySelector('.taxonomy');
if (element) {
element.focus();
}
}
</script>
***Edited by Moderator Marissa to add Support Case Details***
To see attachments, please log in.