Tag Archive - nbsp

Use jQuery To Detect What Browser Your Users Are Using

jQuery has the ability to identify what browser your users are using to visit your site.  It may be more useful to use CSS conditional comments to detect a browser, jQuery makes it very easy:


if( $.browser.safari ) {
  alert('You are using Safari');
} else if( $.browser.msie && $.browser.version > 6 ) {
  alert('You are using a modern version of Internet Explorer');
} else if( $.browser.msie && $.browser.version <= 6 ) {
  alert('You really really need to upgrade your browser');
} else if( $.browser.mozilla && $.browser.version >= "1.8" ) {
  alert('You are using Firefox version greater than 1.8');
}

Put Your Twitter Feed On Your Website Using jQuery

Twitter has become an amazing way to share thoughts, ideas, and information (not to mention what you are actually doing). Displaying your Twitter feed on your website is a great way to promote your Twitter to increase your followers.
Continue Reading…