+ 1
I just want to ask, is there any other language i can use to add interactivity such as Pop-ups aside JavaScript
5 Answers
+ 4
In web, NO!
+ 4
Pop-up = window.open();
It's missing in brython
+ 3
browser.alert() function in Brython is same as the alert() function in JavaScript, that's not a pop-up.
Pop-up are those kind of messages that appears when someone is on a site and it says "This site wants to send [message]," with two options of allow and reject
+ 1
Web browsers can only handle javascript. But there are some transpilers which are able to make javascript from code written in another language, for example Brython or Transcrypt lets you write frontend code in Python.
https://code.sololearn.com/WgsPzmr3LWSf/?ref=app
0
Mirielleš¶
browser.alert(message)
a function that prints theĀ messageĀ in a pop-up window. ReturnsĀ None
https://brython.info/static_doc/en/browser.html