Dynamic feature based on browser type

Dynamic feature based on browser type

bikabika Posts: 25Questions: 0Answers: 0
edited October 2010 in General
Hi,

How to dynamically enable a feature based on browser type?
I want to do somthing like this:
If IE
"bProcessing": true,
else
"bProcessing": false,

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    "bProcessing": $.browser.msie ? true : false

    allan
  • bikabika Posts: 25Questions: 0Answers: 0
    Thanks
This discussion has been closed.