Wednesday, August 28, 2013

Remove Space Text Box When Typing

$('input').keyup(function(){
    str = $(this).val()
    str = str.replace(/\s/g,'')
    $(this).val(str)
});