spicykimchi
spicykimchi

Reputation: 1151

Will javascript on server side run if js is disabled on the client side?

If javascript is disabled in a client browser, will the server side javascript still run?

Upvotes: 0

Views: 1250

Answers (2)

Quentin
Quentin

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

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799082

Server-side stuff is run on the server. The clients settings do not affect it.

Upvotes: 0

Related Questions