Asp+js Screen Resolution Function Not Working In Netscape

Aug 24, 2002

the 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(&#39800;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){

View 1 Replies


ADVERTISEMENT

Works For One Screen Resolution But Not In Another?

Jan 6, 2010

I'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.

View 4 Replies View Related

Detect Screen Resolution With PHP?

Feb 1, 2011

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 Related

Setting Cookie As Per Screen Resolution?

Sep 28, 2011

I 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>

View 1 Replies View Related

IE Detects Wrong Screen Resolution?

Apr 1, 2010

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).

View 4 Replies View Related

Set Background Image According To Screen Resolution?

May 18, 2010

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...

View 6 Replies View Related

Control The Screen Resolution In Webpage?

Jan 28, 2008

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.

View 6 Replies View Related

Resize Images According To Screen Resolution?

Jul 6, 2011

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.

View 1 Replies View Related

Show Ad Based On Screen Resolution?

Dec 29, 2003

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 Related

Load CSS Depending Upon Screen Resolution

Apr 10, 2006

I'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>

View 5 Replies View Related

Redirection Using Visitors Screen Resolution

Aug 7, 2000

Does anyone know of any good perl or java scripts that allow you to redirect visitors based on their screen resolution?? Code:

View 2 Replies View Related

Wrapper Width And Screen Resolution?

Dec 11, 2011

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]............

View 8 Replies View Related

Change Website According To Screen Resolution?

Sep 26, 2005

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 Related

Screen Resolution Accessibility - A Perfect Solution?

Dec 20, 2010

I 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]....

View 2 Replies View Related

Image Resize Based On Screen Resolution

Feb 5, 2010

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.

View 6 Replies View Related

Detect A Screen Resolution And Resize Bg Image Accordingly?

Oct 20, 2010

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 Related

Resize A BG Image Based On Screen Resolution?

Apr 6, 2010

I 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]...

View 2 Replies View Related

Adjust Flash Banner To Screen Resolution?

Aug 26, 2010

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 Related

Jquery :: Resize Images According To Screen Resolution?

Jul 6, 2011

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.

View 1 Replies View Related

Get The Screen Resolution Or Browser Visible Area?

Jul 6, 2011

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 Related

Can DIV Located In The MasterPage Be Resized Depending On The Screen Resolution??

Aug 19, 2010

Can 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].....

View 6 Replies View Related

Dynamic Image Resize Based On Detected User Screen Resolution

Oct 28, 2011

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 Related

Full Screen Script For Both Netscape And IE??

Jul 20, 2005

Is there any script out there that will allow me to launch a full-screen
window (without any title bar) in both NS and IE? I have found scripts
that work only in IE, but is there one that is compatible with NS also?

View 1 Replies View Related

CSS Change With Resolution Not Working?

Feb 18, 2010

I've been trying to get this script working to change a couple attributes in the CSS but it hasn't been working.

It's supposed to change the left and right margins of the #content tag if the resolution is greater that 1024x768. The text doesn't seem to want to stay in the center.

Heres the code:
<!--
if (screen.width > 1024)
{
ChangeCSS('#content','marginLeft','28%');

[Code]....

The CSS code is all inline because this is a tumblr and I don't have a place to host style sheets.

View 1 Replies View Related

FirstChild Not Working In Netscape 7.1??

Jul 20, 2005

the Javascript function firstChild() works as expected in IE but
returns "undefined" in Netscape 7.1

Here is the sample html code that I used. I am asking the javascript
to print out the id of the child of para1. IE correctly prints the
string "italicsid", but Netscape gives me an "undefined". Why so? Code:

View 1 Replies View Related

Css Layer Not Working In Firefox Or Netscape

Nov 26, 2005

I have tried several things, using several Javascript books, but can't get
this to work in Netscape (latest version) and Firefox (latest v.). It works
in MIE and Opera fine. A box (defined by a css layer) is supposed to pop
out to the right when the corresponding box on the far left is moused over.
The first function defines a layer id to the next function which pops out
the box. After debugging in Venkman, it looks like the first function
cannot define the layer id properly to the second function, which actually
slides the box (layer) to the right.

I thought that the getElementById function was supposed to work for Firefox,
but I must be using it wrong(???)

To see how it's supposed to work, view the following page in MIE or Opera:

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved