try another color scheme:


Go Back   TECH6.0 > Get Techie > Programming > HTML/CSS/JavaScript


Check Screen Resolution and Redirect

This is a discussion on Check Screen Resolution and Redirect within the HTML/CSS/JavaScript section, part of the Programming category; This sweet little javascript enables you to redirect a user to a specific URL depending on client machine's screen resolution. ...

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 02-02-2008, 04:20 PM
webwizzy's Avatar

Administrator
 
Name: Vinayak
Join Date: Feb 2008
Location: India
Phone: Samsung Wave
Posts: 1,116
webwizzy is just really nicewebwizzy is just really nicewebwizzy is just really nicewebwizzy is just really nicewebwizzy is just really nice
Send a message via Yahoo to webwizzy
Default Check Screen Resolution and Redirect

This sweet little javascript enables you to redirect a user to a specific URL depending on client machine's screen resolution.


Code:
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<script language="javascript">
if (window.screen){
var w = screen.width;
tmt_url_640 = "page_for_640_res.html";
tmt_url_800 = "page_for_800_res.html";
tmt_url_1024 = "page_for_1024_res.html";
if(w<740){
self.location.replace(tmt_url_640);
}
if(w>=740 & w<835){
self.location.replace(tmt_url_800);
}
if(w>=835){
self.location.replace(tmt_url_1024);
}
}
</script>
</html>
__________________
Always TAG and SHARE your threads
Submit your site to TECH6 Directory
TECH6 on Facebook - Like Us

Would you like to Link To Us | Support TECH6 by going Premium
Know more about me at Vinayaks.com | Follow TECH6 at Twitter


Reply With Quote
  #2  
Old 20-05-2008, 10:05 AM
iBlake's Avatar

Techie
 
Name: Blake
Join Date: May 2008
Location: United States
Phone: Not in the list
Posts: 91
iBlake is on a distinguished road
Send a message via MSN to iBlake
Default

Nice Code

THis is real cool but this and the OS redirect code together isnt good.
__________________
My iPhone is better than yours...........

I Am Back!
Reply With Quote
Reply

Bookmarks


Thread Tools
Display Modes




All times are GMT +5.5. The time now is 01:40 AM.

Contact Us - Tech6.com - Link to Us - Advertise - Submit Site - Privacy Statement - TOS - Top