will a java script javascript work without jsp?
views:
47answers:
3
+2
A:
Yes. JavaScript runs in the web browser. JSP(JavaServer Pages) runs on the web server.
gnarf
2009-09-12 10:08:07
The only condition I know that the browser should have JavaScript enabled.
Umesh Aawte
2009-09-12 10:09:41
And you can check it using noscript tag in html
Umesh Aawte
2009-09-12 10:10:19
+2
A:
javascript has absolutely nothing to do with jsp.
jsp
is a server side technology, and use to write programs on the web server. The language used in jsp is Java.
javascript
is a language on the client side (browser).
It is said:
Java is to javascript what car is to carpet.
On that note, we can safely conclude, javascript does not depend on the server side technology.
Cheers!
Here Be Wolves
2009-09-12 10:32:07