Change meta Tag with Jquery - Cant see it in view sourcecode

1.1k Views Asked by At

I change the content of a metatag like this:

$('meta[name=myMeta]').attr('content', 'newContent');

this works and

console.log($('meta[name=myMeta]').attr('content'));

resonses me the 'newContent'

but if i now click "View Sourcode" i cant see the changes i made with jquery.

Can i solve this some how?

2

There are 2 best solutions below

1
On BEST ANSWER

Viewing the source code in the browser shows the HTML as it was downloaded from the server.

To see amendments you have made to the DOM after the page has loaded, you need to use a DOM inspector, usually available by pressing F12.

0
On

You are confusing the source of a page with the DOM.

The source is the original content delivered from the server, it will not change.

The DOM is live version of the source, this can be changed by javascript. In Chrome you can view this by right clicking on a page and selecting 'Inspect Element'.