Questions tagged [client-side]

The term "client-side" refers to that portion of a web application which runs in the user's browser. Client-side code is most commonly written in Javascript, HTML and CSS. The counterpart of "client-side" is "server-side", i.e., the part of a web application running at the web server.

There are other many client-side techniques, in addition to used in the user's browser such as:

See also:

2357 questions
38
votes
3 answers

Describe the page rendering process in a browser?

First of all, I am not interested in the entire request-response process as addressed by this question What is the complete process from entering a url to the browser's address bar to get the rendered page in browser? I want to know what goes on…
pphanireddy
  • 1,109
  • 2
  • 12
  • 17
36
votes
6 answers

Can you get a public Facebook page's feed using Graph API without asking a user to allow?

I've never used Facebook's Graph API, or OAuth. I'm simply trying to get a public Facebook page's feed using the Graph API, but it requires an access token. I don't want to hassle the users to login and allow access to get their token. A Facebook…
34
votes
4 answers

How to get client MAC address by a access on a website?

I have my website, and it records the number of visitors, IP and time of access... I want to identify each visitor... I think that this was possible recording IP Address... but when the IP is dynamic, my system fails. So I think that I can solve it…
richardaum
  • 6,651
  • 12
  • 48
  • 64
34
votes
4 answers

What is client-side routing and how is it used?

I will be glad if someone could answer the following questions How does it work? Why is it necessary? What does it improve?
Mithir
  • 2,355
  • 2
  • 25
  • 37
33
votes
6 answers

Image brightness detection in client side script

Does anyone know if there is a script available to detect darkness/lightness in an image (HTML included) using a client sided script? I basically want to be able to detect the brightness of image (dark/light) used in the background and have…
Redox
  • 981
  • 3
  • 12
  • 29
32
votes
3 answers

How to get UTC offset in javascript (analog of TimeZoneInfo.GetUtcOffset in C#)

In C# you can use System.TimeZone.CurrentTimeZone.GetUtcOffset(someDate).Hours But how can I get UTC offset in hours for a certain date (Date object) in javascript?
Andrei M
  • 3,429
  • 4
  • 28
  • 35
31
votes
11 answers

Does it make security sense to hash password on client end

If you were to hash a user's password prior to sending it across the line and leaving it in plain-text in memory, would this improve the security of the application? I would assume this mitigates a small fraction of vulnerabilities by protecting the…
IaCoder
  • 12,300
  • 11
  • 37
  • 45
30
votes
2 answers

Is there any drawback to set ClientIDMode = Static on every object ( set on maincontent of master page)

I am working on asp.net project and each time i need to use jquery identifier $(#"objectID"). I have to change the ClientIDMode on each object to be static. Since I have noticed that the default client ID mode is Inherit so i set the MainContent…
Sarawut Positwinyu
  • 4,974
  • 15
  • 54
  • 80
29
votes
9 answers

How can you use php in a javascript function