Move javascript files into inline html -
i have application allows use of inline javascript, not javascript source files. i'm trying modify webpage open on browser, , need know how put javascript files webpage inline.
use <script> tags in html. can go anywhere - prefer inside <head> tag:
<head> <script type="text/javascript"> // put here - type of valid javascript works // if import jquery, can use jquery here too! </script> </head>
Comments
Post a Comment