Showing posts with label lower to upper in java script. Show all posts
Showing posts with label lower to upper in java script. Show all posts

Sunday, July 24, 2011

Convert to Upper or Lower case in Javascript

function convertToUpper(field){
    field.value = field.value.toUpperCase();
    field.value = field.value.toLowerCase();
}