Results 1 to 2 of 2
  1. #1
    CreativeKay's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    85
    Reputation
    10
    Thanks
    2
    My Mood
    Blah

    Lightbulb How to create website widgets like social share/popup/live chat! placing JS in domain

    I saw some website support creating widgets then generate JS and place under head and enable those widgets.

    I want to know what languages/frameworks/libraries might needed to build those widgets!

    And how to find a developer for this !

    Also your opinions are welcome.

    thank you

  2. #2
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    i don't understand fully what u are searching for, or you didn't understood, how HTML and JS works, because you can generate everything in JS dynamicly
    Code:
    <!DOCTYPE html>
    <html>
    <head>
    <script language="javascript">
    function init() {
    	var newDiv = document.createElement("div")
    	var HTMLTextField = document.createTextNode("My JavaScript generated Element")
    	newDiv.appendChild(HTMLTextField)
    	document.body.appendChild(newDiv)
    	window.removeEventListener("load", init)
    }
    window.addEventListener("load", init)
    </script>
    </head>
    <body>
    <!-- nothing in here -->
    </body>
    </html>

Similar Threads

  1. [Solved] How to create website checker summoner info
    By Nicolay4ever in forum League of Legends Help
    Replies: 2
    Last Post: 11-13-2016, 04:32 PM
  2. Replies: 16
    Last Post: 03-03-2014, 08:29 PM
  3. Replies: 39
    Last Post: 10-06-2010, 05:18 PM
  4. How to creat a website..
    By gunman353 in forum General
    Replies: 7
    Last Post: 01-29-2009, 07:14 PM
  5. how to create open files..like "Lunch"
    By dor619 in forum Visual Basic Programming
    Replies: 10
    Last Post: 10-02-2007, 08:53 AM