
Hi All
I have a Option Set field with Yes/No option on a WebFormStep
Based on above selection i need hide/show a Date field using JQeury
I am using below code but it is not hiding complete control
$('#Control') .hide();
Can any one please suggest how to Hide/Show complete Date field (Includes calendar Icon).
Hi
can you try the following code:
$("#controlname").closest("td").find("div.control, div.info").hide();
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.