PDA

View Full Version : If conditional for Javascript enabled?


aceofspades
08-22-2007, 10:20 PM
Im planning on making an ajax mod, but i want people who dont have javascript turned on to be able to use it, but just not ajaxified, so what im after really is:

<if javascript is on>Do X</if>
<if javascript is off>Do Y</if>

I really hope there is something like this, or my project will be a bit crappy.

James

Bump

aceofspades
08-24-2007, 09:37 AM
bump

aceofspades
08-25-2007, 02:45 PM
Nobody knows this? :o

Lea Verou
10-31-2007, 02:03 PM
I'm also wondering this.
I thought it was $show[popups] but it evaluates to true even with js being off.

--------------- Added 1193843137 at 1193843137 ---------------

Btw there is the html tag <noscript> which is equivalent to the second conditional that you/I need. What I am looking for is the first one.

Opserty
10-31-2007, 02:28 PM
I think you have to use <noscript> I couldn't find anything in any of the $show variables.

ragtek
10-31-2007, 02:50 PM
what exactly do you want to do?
maybe this method http://www.developer-network.org/showthread.php?t=40 helps you

Analogpoint
10-31-2007, 02:54 PM
The normal way of approaching this is to use a html link that is linked to your fallback (non-Javascript) page, and handle the onclick event for that link. In your onclick handler, do all your javascript/ajax and then return false, telling the browser not to follow the link. If there's no javascript, you'll go straight to the fallback page.

Lea Verou
11-15-2007, 02:17 AM
Btw, I have came up with a workaround for anyone who needs this: https://vborg.vbsupport.ru/showthread.php?t=162673