[Solved] PLEASE assist me.. RE: *FORM FIELDS* I want to Hide() my “type=text box” until the Other option is chosen in the dropdown option

[ad_1] Two main issues with your original code: 1- Using a wrong selector for the onchange event, replace “Other” by “#title” 2- You were checking if the value is equal to “Other” instead of the “other” you have in your HTML. Be careful, string comparison is case-sensitive! Below is a working snippet after applying these … Read more

[Solved] Jquery to hide a div

[ad_1] You can use jquery .hide function… <a href=”#selectedItems” class=”link” onClick=’$(this).hide();’>Select</a> 1 [ad_2] solved Jquery to hide a div

[Solved] How to hide elements on css

[ad_1] You should really post code here. But anyway adding this to your CSS should work: #wp_dp_member_promoted_listings { display: none; } 6 [ad_2] solved How to hide elements on css