Reputation: 1151
If javascript is disabled in a client browser, will the server side javascript still run?
Upvotes: 0
Views: 1250
Reputation: 943999
Yes.
Server side code (whether in JS or any other language) is executed and the output it sent to the client.
Then, if there is any JS in that output, it will be executed by the client if that client supports JS and doesn't have it disabled or otherwise blocked.
Upvotes: 1
Reputation: 799082
Server-side stuff is run on the server. The clients settings do not affect it.
Upvotes: 0