[jQuery] Re: Meta tag Keyword Upgrade with jQuery

2008-09-06 Thread Rene Veerman
On Thu, Sep 4, 2008 at 7:40 PM, <[EMAIL PROTECTED]> wrote: > > 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

[jQuery] Re: META Tag

2007-05-09 Thread Glen Lipka
Ahh, I just didnt redo the variable! I knew I should've been paying attention while reading John's book! It was in the chapter on Scope I think This is perfect. Thanks guys, Glen On 5/9/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > > http://jquery.com";> > > > $(f

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
http://jquery.com";> $(function(){ $("meta").attr("content","4;url= http://commadot.com";); }); goes to commadot, not jquery! On 5/9/07, John Resig <[EMAIL PROTECTED]> wrote

[jQuery] Re: META Tag

2007-05-09 Thread John Resig
isn't that because you're still referring to the old value in 'meta'? You need to call it again before you refer to it in the second alert: meta = $("meta").attr("content"); --John On 5/9/07, Glen Lipka <[EMAIL PROTECTED]> wrote: http://jquery.com";> $(document).ready(function(){ var meta

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
one idea! setTimeout("window.location.href ='http://commadot.com'",500*1000) On 5/9/07, Glen Lipka <[EMAIL PROTECTED]> wrote: http://jquery.com";> $(document).ready(function(){ var meta = $("meta").attr("content"); alert(meta); //results in 200;url= http://jquery.com $("meta").attr("c