I am looking for a way to record the various resolutions that users of my site are using. I know how to detect their resolutions using Javascript on the client side
I am just after a means to get that info up to the server so I can save it into a text file or a database. I only want to record the data once for each visit to the site, not each time the user goes to a new page within the site.
I guess I will get repeat values when the same user comes back to the site another day but I am not too bothered about that.
Any ideas guys and girls??
Tony
Code:
var pageWidth = screen.availWidth;
var pageHeight = screen.availHeight;
I guess I will get repeat values when the same user comes back to the site another day but I am not too bothered about that.
Any ideas guys and girls??
Tony
