How I use AJAX for users who have javascripts turned off? Is it woth while?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mikek12004
    New Member
    • Sep 2008
    • 200

    How I use AJAX for users who have javascripts turned off? Is it woth while?

    I have an AJAX application fetching some data from DB, can it work if JS is turned off? And is the number of users with JS turned off big enough to even bother finding (if any) a soluton?
    P.S. What's the percentage of people with JS turned off today? Got any reliable statistics (found one or two statistics but wasn't sure it was reliable-I want this for my thesis so I must be careful with my sources)?
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    Originally posted by mikek12004
    I have an AJAX application fetching some data from DB, can it work if JS is turned off?
    simple answer: no. (guess what the J in AJAX stands for…)

    Originally posted by mikek12004
    And is the number of users with JS turned off big enough to even bother finding (if any) a solution?
    the least you should do is leave a note about the issue.

    Comment

    • mikek12004
      New Member
      • Sep 2008
      • 200

      #3
      guess you mean using the <noscript> tag? or there is a better way, and do you know of any statistics of user having JS turned off I can use (found a couple on Google but want something I can put on my references)?

      Comment

      • Dormilich
        Recognized Expert Expert
        • Aug 2008
        • 8694

        #4
        <noscript> is but one possibility. you can also include an arbitrary element and use JS to remove it.

        EDIT: about the alternate solution. that depends on how important this feature is for you. if your site’s user experience builts upon it (aka basic feature) you should consider making one.

        Comment

        Working...