hiding option from select field

How can i remove the “Please Select” as the page load in Edit /Add page from the select field types.I tried using client side in startup script the following line of code, but it not worked:$(‘select[name*=“”] option[value=“”]’).remove();please suggest

It should work. I tried the following code in “Startup Script” of “Edit Page” that belongs to the “models” table of demo project, and it works properly:$(‘select[name*=“Trademark”] option[value=“”]’).remove();The “Please select” option is successfully removed from Trademark field.

You better put your code in “updatedone” event. You may search “updatedone” in this forum.

thankyou, clearing browser cache resolved the issue.