[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 tag with

[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: meta http-equiv=refresh content=200;url=http://jquery.com; $(document).ready(function(){ var meta = $(meta).attr(content); alert(meta); //results in 200;url=

[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: meta http-equiv=refresh content=200;url=http://jquery.com;

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
meta http-equiv=refresh content=5;url=http://jquery.com; script type=text/javascript src=/js/jquery.js/script script type=text/javascript $(function(){ $(meta).attr(content,4;url= http://commadot.com;); }); /script /head goes to

[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: meta http-equiv=refresh content=5;url=http://jquery.com;