Hide or show a form bases on a field value

@optimizsql
JQuery…
If you are pulling your information from the page target the field block that has your info like below.

If($(‘#YOUR TEST DATA SELECTOR’).html() === ‘YOUR CONDITION’){
$(‘#YOUR FORM ELEMENT SELECTOR’).css(‘display’,‘none’);
}

I saw a post somewhere Moe did on using the selector tool to get the element path for you to use to get your from and data selectors if you are not familar… Once you get use to the layout Tadabase uses it is a breeze…

saw the link info for using the selector so here is a short cut to that…