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

Reply via email to