[jQuery] Meta tag Keyword Upgrade with jQuery

2008-09-04 Thread pedramphp
Dear Folk, I've developed a website with ajax capabilities and bookmarkable supports history, I would like to give a specefic Meta tag to each page ... what is the solution ? there is two thing in my mind 1- upgrade the meta tag with jQuery when each pages loads ... for example $("meta[name=keyw

[jQuery] META Tag

2007-05-09 Thread Glen Lipka
http://jquery.com";> $(document).ready(function(){ var meta = $("meta").attr("content"); alert(meta); //results in 200;url=http://jquery.com $("meta").attr("content","500;url=http://commadot.com";); alert(meta); //results in same as first }); Good news. The first alert works. Bad news.