Interactivity to web pages | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Interactivity to web pages

Part from JavaScript, what other languages can be used to add interactivity to web pages?

18th Mar 2018, 7:02 AM
Mark Aloo
Mark Aloo - avatar
6 Answers
+ 22
Only Javascript.
18th Mar 2018, 7:08 AM
Igor Makarsky
Igor Makarsky - avatar
+ 4
You can use VBScript, but I do not know how much support you have in all browsers. There are other languages such as Kotlin or Dart that can be used, but their use depends on a special browser (Dartium, although this is to be changed by another methodology) or a compiler (Kotlin JS is a way of writing anything in Kotlin and later compile it to JS). In the not so distant future there are likely to be many more options thanks to WebAssembly.
18th Mar 2018, 7:14 AM
Mickel
Mickel - avatar
+ 4
Php is server-sided language, it cannot be used "to add interactivity to web pages" as asked by OP... VBscript is only supported in oldest versions of Microsoft Internet Explorer (Microsoft themselves have abandonned support)...
18th Mar 2018, 10:04 AM
visph
visph - avatar
+ 2
PHP also.
18th Mar 2018, 8:24 AM
Aaron Stone
Aaron Stone - avatar
+ 2
SQL is a database query language... it's used mainly at server side, but could be more or less related to page interactivity through AJAX calls ( http queries done with javascript to server side used to dynamically update page content without loading a complete new page ), even if safety should avoid to send SQL queries without server sided verification to protect against SQL injection attacks...
18th Mar 2018, 2:21 PM
visph
visph - avatar
0
Where is SQL helpful?
18th Mar 2018, 2:14 PM
Mark Aloo
Mark Aloo - avatar