This code will chnage the text of all the div element to UpperCase using JQuery. You need to download the Jquery file from
http://docs.jquery.com/Downloading_jQuery .
<script type="text/javascript" src="Script/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").text("For this type jQuery found.");
$("div").text($("div").text().toUpperCase());
});
</script>
Enjoy..
Download latest jquery plugin for converting text to uppercase, lowercase, title case and pascal case.
http://jquerybyexample.blogspot.com/2011/12/jquery-plugin-for-uppercase-lowercase.html