<!DOCTYPE html><html><head><script src="//libs.baidu.com/jquery/1.10.2/jquery.min.js"></script><script>$(document).ready(function(){$("button").click(function(){$("p").html("Hello <b>world!</b>");});});</script></head><body><button>Change content of all p elements</button><p>This is a paragraph.</p><p>This is another paragraph.</p></body></html>