Answers for "dynamically change meta tags javascript"

0

dynamically change meta tags javascript

$(document).ready(function(){
    $('title').text("Your new title tag here");
    $('meta[name=description]').attr('content', 'new Meta Description here');
});
Posted by: Guest on August-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language