SOLVED: Disable Input Field [Using JQuery]

Can you disable an Input Field on formLoad.

Text Input, Text Area, Select, Check Box, Radio etc.

Solved. JQuery again.

Assign an input field a specific ID.

Then reference the element using the same ID with JQuery.

$(“#ID-TO-DISABLE”).prop(‘disabled’, true);

See Video
http://quick.as/e2DBUvV7q

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.