Last updated on May 4th, 2016 at 12:16 am

Change web page title jquery

This is a simple script that will change the web page title using jquery.
Customize it according to your requirement.Jquery knowledge is essential to understand the code below. Any doubts do get back to me 🙂 Happy Coding!!!!

<title>Title changing script:Mistonline.in, Webpage before clicking below</title>
<script type="text/javascript" src="http://demo.mistonline.in/jquery-1.2.3.min.js"></script>
<script type="text/javascript">
      $(document).ready(function() {
	  $("p").click(function(){
        document.title = 'New Title:- The Jquery Effect';
	})
   });
</script>
<p><u>If you click on me, The title of this webpage will change.</u></p>

DEMO

Leave a Reply

Your email address will not be published. Required fields are marked *