-
-
Notifications
You must be signed in to change notification settings - Fork 2
Start
plurryt edited this page Feb 13, 2023
·
5 revisions
Recommended script for 100% work
<script>
var importpjs = document.createElement('script');
importpjs.src = "https://phazor.js.org/pjs/stable.js";
importpjs.onload = function () {
// You script will be here
};
document.head.appendChild(importpjs);
</script>
You can make own scripta with all other plugins in onload function But here is phazor script.
pjs.alert('This is popup window')
pjs.clog('this is console log')
Paste script with phazor only in onload function (u can use other import version but we recommend this) Done