Once more, we must write the Javascript code in the Advanced tab on the webpage.
$(document).ready(function()
{
$(‘#crmonce_address’).change(function()
{
var Test = $(‘#crmonce_address’).val();
if(Test == “Chennai” || Test == “chennai” )
{
$(‘table[data-name=”tab_2_section_2″]’).parent().hide();
}
else
{
$(‘table[data-name=”tab_2_section_2″]’).parent().show();
}
});
});