showing results for - "dynamically change meta tags javascript"
Daniele
16 Jul 2019
1$(document).ready(function(){
2    $('title').text("Your new title tag here");
3    $('meta[name=description]').attr('content', 'new Meta Description here');
4});
5