Answers for "jquery change document title"

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

Browse Popular Code Answers by Language