Using the ro attribute in the JavaScript to make a field read-only and using URL link to populate the read only field. The issue we are running into is that when the values are passed to the form and the field is the first field on the form, the cursor selects the first field and allows for me to change the value. Has anyone ran into this before and resolved?
Javascript
$(document).ready(function () {
$('.ro input').attr('readonly','True');
$('.ro select').attr('readonly','True');
});