I finally managed to get a dropdown box to dynamically load with options to hide and show per selection. I have since changed my HTML to be custom (instead of the wizard). I also added in "events" tab the action to Load JS under "On Load".
Dynamic file - no
But it doesn't load into the page. Can you please advise what i am doing wrong.
Thank you.
Dynamic file - no
$("#status").change ( function () {
var targID = $(this).val ();
$("div.style-sub-1").hide ();
$('#' + targID).show ();
});
But it doesn't load into the page. Can you please advise what i am doing wrong.
Thank you.
Hello,
This code is using JQuery, do you have JQuery loaded on this page ? please check the page source, also this code will be triggered when you change the value of the element with id="status"
Regards,
Max
This code is using JQuery, do you have JQuery loaded on this page ? please check the page source, also this code will be triggered when you change the value of the element with id="status"
Regards,
Max
This topic is locked and no more replies can be posted.