For smart Primates & ROBOTS (oh and ALIENS ).

Friday, January 20, 2023

How to add inline javascript using createElement

How to add inline javascript using createElementHere  are the 2 examples of codes.Code 1:<script>var scriptNode          = document.createElement ("script");scriptNode.textContent  = "alert('aaa');";document.head.appendChild (scriptNode);</script>Code 2:<script>var scriptNode=document.createElement("script");scriptNode.textContent=...
Share:

Thursday, January 19, 2023

pass and get data in createElement statement in javascript

How to pass and get data in createElement statement in javascript?Here is the listed below code: In "a1.html" <script>var myscript= document.createElement('script');myscript.setAttribute('data-id1','fordata1');myscript.setAttribute('data-id2','fordata2');myscript.setAttribute('data-id3','fordata3');myscript.setAttribute('data-id4','fordata4');myscript.setAttribute('data-id5','fordata5');myscript.setAttribute('src','get-id-in-js.js');document.head.appendChild(myscript);</script>  In...
Share:

pass and get data in script tag in javascript

How to pass and get data in script tag in javascript Here is the code: In "a1.html"<script async="" data-id1="fordata1" data-id2="fordata2" data-id3="fordata3" data-id4="fordata4" data-id5="fordata5" src="get-id-in-js.js"></script>   In "get-id-in-js.js" file: var scripts=document.getElementsByTagName("script");cons...
Share:

Saturday, January 14, 2023

Javascript Events of mousedown mousemove keydown scroll touchstart click keypress touchmove

Javascript Events of mousedown mousemove keydown scroll touchstart click keypress touchmove<script type="text/javascript">var sd=!1;console.log(sd);function myworker(){    if(!sd){        sd=!0;        console.log("Yes");        console.log(sd);  ...
Share:

Ads Inside Post

Powered by Blogger.

Archive