Redirect page when Javascript Disabled
3 posters
Page 1 of 1
Redirect page when Javascript Disabled
Hi All
Is any way to redirect to another page when users disable their javascript ??
Is any way to redirect to another page when users disable their javascript ??
Last edited by TamDonCo on August 28th 2016, 4:44 am; edited 1 time in total
Re: Redirect page when Javascript Disabled
Hi @TamDonCo,
Yes, this is possible, however it can negatively impact your SEO because some bots that crawl your forum don't use JavaScript. Furthermore, it can also affect noscript users on your forum, thus turning them away. I'd advise against doing this. Instead, I'd recommend just adding a small notice somewhere in the overall_header like :
Then you can use CSS to style it, like fix it to the screen for example :
BTW here's a good ol' stackoverflow topic on this :
http://stackoverflow.com/questions/7129527/noscript-redirect-would-it-affect-search-engine-optimization
The code you're looking for is provided by the author, you'd need to add it in the overall_header if you're still up for doing this.
Yes, this is possible, however it can negatively impact your SEO because some bots that crawl your forum don't use JavaScript. Furthermore, it can also affect noscript users on your forum, thus turning them away. I'd advise against doing this. Instead, I'd recommend just adding a small notice somewhere in the overall_header like :
- Code:
<noscript>
<div id="noscript-notice">Our forum runs best with JavaScript enabled !</div>
</noscript>
Then you can use CSS to style it, like fix it to the screen for example :
- Code:
#noscript-notice {
color:#FFF;
font-size:13px;
font-weight:bold;
background:#C00;
padding:6px;
position:fixed:
left:0;
right:0;
bottom:0;
overflow:hidden;
overflow-x:auto;
white-space:nowrap;
}
BTW here's a good ol' stackoverflow topic on this :
http://stackoverflow.com/questions/7129527/noscript-redirect-would-it-affect-search-engine-optimization
The code you're looking for is provided by the author, you'd need to add it in the overall_header if you're still up for doing this.
Re: Redirect page when Javascript Disabled
Thank You very much, Ange Tuteur
I will test it later when I have time
Have a nice weekend
I will test it later when I have time
Have a nice weekend
Re: Redirect page when Javascript Disabled
Problem solved & topic archived.
|
Similar topics
» redirect /contact to /u1 with javascript
» Redirect link in a page
» Html Page Redirect
» My domain redirect to another page
» [ONLY TOPIC] ads not disabled
» Redirect link in a page
» Html Page Redirect
» My domain redirect to another page
» [ONLY TOPIC] ads not disabled
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum