$('#ddl').change( function (e) {var selectedValue = $(this).val();switch(selectedValue){case 1:// Hide/show or enable/disable form elements here with Javascript or Jquery
// Sample enable code
document.getElementById("username").readOnly = false;document.getElementById("username").style.background = "transparent";document.getElementById("username").style.color = "#000000";
// Sample disable codedocument.getElementById("first_name").readOnly = true;
document.getElementById("first_name").style.color = "#c0c0c0";
}return false;});
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To post to this group, send email to ang...@googlegroups.com.
To unsubscribe from this group, send email to angular+u...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular?hl=en.