I\'ve searched around for this a lot and can\'t find a specific example of what I\'m trying to do. Basically I want to get the value of a textbox, by the name of the text bo
Another, more jQuery'ish option:
$(".stripspaces").keyup(function() { $(this).val($(this).val().replace(/\s/g, "")); });