Set content returned from a function to <P> element - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:html

Description

Set content returned from a function to <P> element

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("p").html(function(n){
            return "index: " + n;
        });//w ww. j  a v a2  s.  c  o m
    });
});
</script>
</head>
<body>

<button>Change the content of the p elements</button>

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

</body>
</html>

Related Tutorials