MichaelCurtis
7 years agoQrew Cadet
IOL Hide
Using IOL I am able to make the Save Button Hide when conditions are true but when the user makes a change to make the condition false I am not able to make Save Button reappear with $(".IconOnly").sh...
$(".IconOnly, #saveButton, #footerSaveButton").hide();To show:
$(".IconOnly, #saveButton, #footerSaveButton").show();Make sure you are not removing instead of hiding the elements. Also, you can combine several selectors by separating them with a comma.