Detect Browser Dimension

Dear all,

I’ve just been turned on to Ruby and am trying to code a first Ruby
CGI. I’ve already hit a brick wall.

I’m looking to see if there is a method similar to PHP’s screen.width()
and screen.height() so I can dynamically send different sized pictures
depending on the agent’s screen resolution.

-Christopher

CGI is a code that executes on the server. the server does not know
anything about the client that submits a request unless the client
tells it about itself. there is no way to find out the screen size of
the client’s browser unless the client side code submits a request to
the CGI containing the dimentions. the client even can have no browser
at all as far as the CGI script is concerned.

konstantin

[email protected] wrote:

One way to do this would be to use Javascript’s screen.width and
screen.height to set some hidden input values and then read those with
the CGI script.

-Justin

Justin C. wrote:

-Christopher

One way to do this would be to use Javascript’s screen.width and
screen.height to set some hidden input values and then read those with
the CGI script.

-Justin

.

A more modern approach would be to use an AJAX request to send the
values to the server side. You could do this onload(), and then again
onresize() (Supported by all but Opera.) Of course, if you’re using
Javascript you could make most adjustments on the page and avoid the
round trip (Unless the issue requires a server side adjustment, like
building a graphic on the fly or something.)