jQuery is made to work for pretty much all major and commonly used browsers on the market. Rather than checking whether the browser supports jQuery or not, maybe you should check whether they support Javascript or not.
Is there an exception to that for your website or audience, such that the browser userd will support Javascript, but not jQuery? On Feb 13, 10:33 am, lerxst <yu119...@gmail.com> wrote: > My question is pretty straightforward. Using only object detection, > is there a way to determine whether or not jQuery will function in > that browser. > > Say something like: > > // if your browser supports these js objects used in jQuery > if (objectA && objectB && objectC...) > then dynamically output jQuery src file and those browsers that > can't use jquery at all, output an HTML and CSS version of the page > > This has been bothering me for some time now. I'm essentially trying > to provide an easily accessible site for all. > > Thank you