PassionMachine
PassionMachine

Reputation: 1

javascript code to differentiate between ipad and ipad retina?

I'm developing an application for Ipad. So I need to change the image rendering depending upon the devide wheteher it is ipad or ipad-retina . So can anybody tell me how to detect the difference between ipad and ipad-retina? Thanx!!!!!!!

Upvotes: 0

Views: 296

Answers (2)

Joseph Silber
Joseph Silber

Reputation: 219938

var isRetina = window.devicePixelRatio > 1;

Check this out: Detect retina displays with javascript.

Upvotes: 1

Related Questions