Do we know how well jQuery works with, for example, IE 5.5 Win? I have a feeling it will "work" but not completely...
does jQuery do any browser detection before trying to do anything, or does it just forge ahead, and whether it works or not depends on the browser... -- A On Nov 10, 1:00 am, Guy Fraser <[EMAIL PROTECTED]> wrote: > MadMapper wrote: > > I'd like to show a message (display a div) for users who show up with > > a browser that jQuery doesnt fully support - what's the best > > approach? Will jQuery work on old browsers, just not perfectly? > > Add the div like this: > > <div id="no-jquery">your message to the user here</div> > > then: > > $(function(){ $('#no-jquery').hide(); }); > > So if jQuery is alive, it will hide the div. Then again, it might be > alive but not working very well depending on the browser :s