Detect Browser Dimension

C

ceedub.industries

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
 
A

ako...

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
 
J

Justin Collins

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

Adam Sroka

Justin said:
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.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top