Skip to content

Instantly share code, notes, and snippets.

View mo7amd's full-sized avatar

Mohammed Khaleel mo7amd

View GitHub Profile
@mo7amd
mo7amd / input_lowercase.txt
Last active March 16, 2017 10:16
Force input field data to lowercase before send to the server
$('#form_id').submit(function(e){
var valueToLower = $(this).find('input[type="type"]').val().toLowerCase();
$(this).find('input[type="type"]').val(valueToLower);
})