"; // $(this).parent().append(html); // $(this).remove(); //}); $('select').attr("disabled", true); //$('input[type=text], textarea').css('border', 'none'); //$('input[type=text], textarea').css('color', 'blue'); $('input[type="text"], textarea').prop('readonly', true); //$('textarea').css('overflow', 'auto'); } } $(".no-data-fill").focus(function () { $(this).prop('readonly',false); }); function ismaxlength(obj) { var mlength = obj.getAttribute ? parseInt(obj.getAttribute("maxlength")) : ""; if (obj.getAttribute && obj.value.length >mlength) obj.value = obj.value.substring(0, mlength) } // $('input[type="text"]').bind('change keyup', function() { // var value = $(this).children("option:selected").attr('value'); // !(/^[()A-z0-9@*,~!#$:. ;\"\'-]*$/i).test($(this).val()) ? $(this).val($(this).val().replace(/[^()A-z0-9@*,~!#$:. ;\"\'-]/ig, '')) : ''; // }) function valid(f) { }