Redirection Using Visitors Screen Resolution
Aug 7, 2000Does anyone know of any good perl or java scripts that allow you to redirect visitors based on their screen resolution?? Code:
View 2 RepliesDoes anyone know of any good perl or java scripts that allow you to redirect visitors based on their screen resolution?? Code:
View 2 RepliesDoes anyone know the best way to detect and track a visitors screen resolution. I know the javascript to detect the users resolution but I am a bit confused on the best way to track and save this. Should I save it to a database or is it easier to save it to a text file?
View 8 Replies View RelatedI'm new to javascript and im trying to teach myself how to use it, however, ive come accross a problem. I'm using this code embeded in a HTML page for rollover images:
<script language="JavaScript" type="text/javascript">
<!--
if (document.images) {[code].....
This works completly fine in 1280 x 800 but goes mental when you hover over it in 1024 x 768 screen resolution.
I have set javasscript code to detect and store into variable screen resolution.How to store this javascript into variable PHP?[code]
View 4 Replies View RelatedI would like to set/create a single-use/temporary "cookie" for the duration of the user's session or possibly for up to 2 days and have a popup alert box, telling them that their screen resolution is too low to view. Here is my existing Javascript below.implement and/or rewrite it with the cookie?
Code:
<script type="text/javascript">
<!--
if (screen.height<768 || screen.width<1024) alert ("Your screen's resolution is below 1024x768.This site works better at higher resolutions.");
// -->
</script>
I have this script:
<SCRIPT language="JavaScript">
<!--
// small[code]....
The problem? On a computer with 1280x1024 resolution, IE detects it to be 1024 (thus sending the user to the wrong page). It works perfectly in all other browsers (that I have tried).
I would like to be able to change my webpage background image according to the screen resolution the user uses so:
if screen resolution is greater than or equals to 1200*600 then background = mybackground.jpg no-repeat code...
I am trying to create a page where it will look the same if the screen is resolution 1024 x 768 or if the screen is resolution 800 x 600.
The below finds the resolution but the page looks different depending on the resolution. how I can make a web page look the same no matter what the resolution?
<script>
if ((screen.width>=1024) && (screen.height>=768))
{
divWidth = 1024;
divHeight = 768 ;
[Code]....
In my above example the page width scrolling changes depending on resolution. I want it to be the same if either resolution is used.
I have a web application with an aspanel, users can add images, the program automatically make the thumbnail. when user click on thumbnail they can see a pop up modal page.
Images are in different sizes, so what I need to achieve is to get the screen resolution or browser visible area and re-size the image according to this resolution. (users could have different type of computer screen with different resolution), I need a Javascript or jquery code.
I was wondering if you had any idea how to show a ad based on screen resolution. Sort of like how espn.com has it...when your on 800 by 600 it doesn't show the ad and msn table on the right but when you are on 1024 or higher it does. Does anyone have any idea how to do this?
View 1 Replies View RelatedI'm trying to write a javascript that detects the screeen resolution size and load a css sheet accordingly. Can someone see why the below javascript does not work?
<script language="JavaScript1.2">
<!--
if (screen.width==800||screen.height==600) //if 800x600
{document.write("<link REL='stylesheet' href="../site.css" rel="stylesheet" type="text/css" />");}
else if (screen.width==640||screen.height==480) //if 640x480
{document.write("<link REL='stylesheet' HREF='http://www.mysite.com/site.css' TYPE='text/css'>");}
else if (screen.width==1024||screen.height==768) //if 1024x768
{document.write("<link REL='stylesheet' HREF='http://www.mysite.com/site.css' TYPE='text/css'>");}
else //if all else
{document.write("<link REL='stylesheet' HREF='http://www.mysite.com/site.css' TYPE='text/css'>");}
//-->
</script>
I'm trying to set my wrapper div width so it fits to screen res. i got it working but it only works when i call it by onclick="SetWidthToResolution()" function and i want it to load with the page.
function SetWidthToResolution()
{
if(screen.width == 2560)[code]............
is it possible to display a different website according to the browser's screen resolution? For example, is it possible that in the body onload you put a code, and then you have all three different websites listed in the file, and the code analyzes the screen resolution, then chooses the appropriate website?In my situation, I can't have a screen which pops up and asks for the resolution - it just wouldn't work. So, is it possible?
View 9 Replies View RelatedI began working on a "best" solution for screen res widths of 1024+ for centralised fixed width pages with potentialy large (or any size) left and right margin graphics and have come up with something I'm very happy with: an outside wrapper set to 100% + overflow hidden (removes the horizontal scrollbar on all screen res)
a wrapper inside that set to 1000px with margin auto (allows the central page to be in the middle of, or to fill the page of all screen res - brilliant because originally one main objective was for a left margin not to push the page to the right and out of view on a lower res screen) an inside wrapper inside the centralised one above set to for example, width 1800px and left 400px, allows both margins to be viewable for all screen res larger than the central page (1000px+)ok, so the final hurdle in what for me would be a perfect solution is for any screen res lower than 1000px - currently the horizontal scroll bar is removed - therefore the central page has its right potentialy chopped off.... and so with some research, I've put together the following JavaScript:
<SCRIPT language="JavaScript">
if (screen.width<1000)
{document.getElementById('outsidewrapper').style.cssText='overflow: visible;';}
</SCRIPT>
This is my best effort at JavaScript - I am slowly and steadily learning more. I feel its on the right track, to return the overflow on the outer wrapper would bring the horizontal scroll bar back, but on IE (lower than 1000 res screens) this causes an error and does not work on any browser.how to get this code to work, it'd make for me today a good day, if any of this is difficult to understand without seeing, the site is: http:[url]....
I have a background image in body.What i want to achive is that
1)- calculate the visitor screen resolution.
2)- based on that resolution i want to resize my background image.
All I want to do is to resize my background image say bg.jpg as per the visitor's screen resolution.On internet, I did find working javascripts but they used the if (width= height= ) thing.
View 1 Replies View RelatedI am looking at an easier way to have the background-image for a site be resized so that it looks the same across all screen resolutions (or at least close enough). The way I am doing it now is by using Javascript to get the width of the screen and then loading an appropriate sized image. Looks like this:
[Code]...
I have a flash banner width that is over 900. However, I have a small screen/screen resolution and I have to scroll over to view the rest of the content. How can I incorporate the flash banner with the javascript to adjust the size accordingly?
View 1 Replies View RelatedI have a web application with an aspanel, users can add images, the program automatically make the thumbnail. when user click on thumbnail they can see a pop up modal page.Images are in different sizes,so what I need to achieve is to get the screen resolution or browser visible area and re-size the image according to this resolution.(users could have different type of computer screen with different resolution), I need a JavaScript or jquery code.
View 1 Replies View Relatedthe below function allows me to pass the screen resoltion variable to asp through a cookie. It works in IE and Opera but not in Netscape. What is the problem?
Code:
<script language="JavaScript">
<!--
function checkres(){
if('<%=Request.Cookies("screenres")%>' != window.screen.width + 'x' + window.screen.height){
document.cookie = 'screenres=' + window.screen.width + 'x' + window.screen.height
window.location.href("default.asp")
}
}
// -->
</script>
if someone doesn't know what the asp line does, then 800x600 may be an output. Like below
Code:
<script language="JavaScript">
<!--
function checkres(){
if(魸x600' != window.screen.width + 'x' + window.screen.height){
document.cookie = 'screenres=' + window.screen.width + 'x' + window.screen.height
window.location.href("default.asp")
}
}
// -->
</script>
the if statement doesn't appear to be executed in NS...so I presume that the error is in the line
Code:
if('<%=Request.Cookies("screenres")%>' != window.screen.width + 'x' + window.screen.height){
I have a web application with an asp:panel, users can add images, the program automatically make the thumbnail. when user click on thumbnail they can see a pop up modal page.Images are in different sizes, so what I need to achieve is to get the screen resolution or browser visible area and re-size the image according to this resolution. (users could have different type of computer screen with different resolution), I need a JavaScript or jquery code.
View 1 Replies View RelatedCan DIV located in the MasterPage be resized depending on the screen resolution?
<tr style="vertical-align: top;"><td>
<div id="mainArea">
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server" />
</div></td></tr>
I've tried unsuccessfully -
var height = screen.height;
var area1 = document.getElementById('ctl00_mainArea');
if (height == 1024) {[code].....
So my task was to build basically photo-based department org-charts for a SharePoint 2007 environment. Not sure why I was asked to do this as the last time I web designed was when Netscape 4.0 and IE4 were still duking it out, but whatever.I inserted my images (125x125) into tables and everything looks great. on my screen.Boss's screen, a slightly smaller monitor with a lower resolution, not so much.I'd like to be able to dynamically resize the image display sizes based on detected screen resolutions, or failing that, have at least 2 image libraries using 75x75 and 125x125 and then load one image size or the other based again on detected screen resolutions.
View 9 Replies View RelatedI have a site in Dutch and (a translation) in English, say www.dutch.nl and www.english.nl. A Dutch site, say www.fools.nl, has a link to www.english.nl. I want this to be changed into www.dutch.nl, but the site never updates. How can I inmediately redirect the visitors of www.fools.nl to www.dutch.nl, without using php.
View 2 Replies View RelatedI am setting up a web page to collect some data via a questionnaire.
The questionnaire part is working fine, but I need some help with one
part. I have two different versions of the questionnaire (basically
just different orders of questions) and would like the users to be
redirected to one of the two versions. The idea I had was to have a
redirection page that simply had a web page counter on it (like so many
pages have now days) and based on this counter, people would
automatically be redirected to one of the two versions of my
questionnaire. Basically, if the counter was odd, the person would be
routed to version 1 and if even, they would be routed to version 2. I
thought this would be similar to redirecting people based on the type of
browser they are using or their language settings. However, I was
recently told there is not a way to do what I proposed above. So, this
leaves me with two questions:
1. Was the advice that I received accurate in stating that having a
simple script to redirect the user based on a web page counter is not
possible?
2. If so, does anyone have some advice as to how I could go about
automatically redirecting people to one of two web pages?
can anyone give me a simple redirection script? something suitable for "You'll be taken to this page in 5 seconds... if not you can click on this link"
i did a search at hotscipts but turned out lots of complicated scripts...