Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(document).ready(function( $ ){
- // Your code in here
- $( "#text" ).prop( "disabled", true );
- $(document).on('click',function(e){
- if(e.target.id == "text"){
- alert("The input field is disabled.");
- }
- });
- });
RAW Paste Data