Separating the string with white spaces

Kmandapalli
Posted by Kmandapalli under jQuery category on | Points: 40 | Views : 1038
<script type="text/javascript">
$(document).ready(function(){
var element = $("#lblMessage").text().split(" ");
alert(element);
});
</script>

Comments or Responses

Login to post response