Set place hold text via Javascript
Description
The following code shows how to set place hold text via Javascript.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w w w . jav a 2s . co m-->
$(document).ready(function(){
$("#ctl00_bc_tbPassword").attr("placeholder", "Type your answer here");
});
});//]]>
</script>
</head>
<body>
<input type="password"
id="ctl00_bc_tbPassword"
class="ui-input-text ui-body-c ui-corner-all ui-shadow-inset">
</body>
</html>