Get text from paragraph and set to DIV : DIV « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- DIV
Get text from paragraph and set to DIV
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var str = $("p:first").text();
$("div").html(str);
});
</script>
</head>
<body>
<body>
<p>asdf</p>
<DIV></DIV>
</body>
</html>
Related examples in the same category