put-attribute to title code example
Example 1: jquery set title
$('#yourElementId').prop('title', 'your new title'); // jQ 1.6+
$('#yourElementId').attr('title', 'your new title'); // jQ <1.6
Example 2: html title attribute
<head>
<title>This is your webpage title</title>
</head>