Should I worry about javascript support?

I developed a site with ajax support. However, the site currently does not work without javascript. The site works well in any browser that I tested, as well as on the iPhone / Nokia.

However, should I still worry about javascript support?

I know that there are methods that would make my site work with or without javascript, but it will take some time to refactor.

Change . This application is intended for our customers who will use the system to fill out and process forms. Professional use mainly.

+3
source share
7 answers

Javascript is Huge Facebook JS, , , JS

- JavaScript , , delt .

<noscript>, , , javascript

<noscript>
   Please enable javascript to use this site
</noscript>

, google, mint .., , .

,

, JavaScript, :

<noscript><img src="noscript.php" /></noscript>

php !

php

<?php
   //Track the user details here inside your database or whatever so you can then see.



   //Here send back a 1x1 pixal so the DOM IS ok and to reduce load
   $pxl= imagecreate( 1, 1);
   header( "Content-type: image/png" );
   imagepng( $pxl);
   imagedestroy( $pxl);
?>
+5

javascript, , :

<noscript>
    Hey, it seems you have Javascript disabled. Get out of my lawn!
</noscript>

.

+3

, javascript . , . javascript, , javascript.

Grz, Kris.

+1

javascript. , , , / , , google javascript.

0

.

, JavaScript, , , JavaScript.

, , , .

, .

0

AFAIK, Google JavaScript. , , , JavaScript.

0

.

If you expect a good chunk of traffic from mobile web browsers, then yes, you should reorganize the website to make sure that it works well with these clients. If most of the traffic comes from rich desktop web browsers, then this should not be a problem.

-1
source

Source: https://habr.com/ru/post/1752251/


All Articles