Answers for "jquery change title of page"

1

jquery set title attribute

$('#yourElementId').prop('title', 'your new title');
Posted by: Guest on October-15-2020
0

jquery change document title

<script type="text/javascript">

    $(document).ready(function() {
        document.title = 'blah';
    });

</script>
Posted by: Guest on July-29-2021
0

jquery change title of page

document.title = 'Your title';
Posted by: Guest on September-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language