I want to create a javascript badge that displays a list of links. We host the javascript on our domain. Other sites can put an empty div tag on their page and at the bottom a reference to our javascript that would render the content in the div tag. How do you implement something like this?
|
|
|
|
|
|
|
just as you say, have them put a div at the bottom of their page:
then have them link to your javascript:
then have them alter their body tag, or onload to call your script
|
||
|
|
Like @Owen said, except why not craft your javascript so that
does the work of populating Example for your mywidget.js code:
|
||
|
|
|
|
I would give the SCRIPT tag an ID and replace the script tag itself with the DIV + contents, making it so they only have to include one line of code. Something along the lines of the following:
In your script, you can swap out the SCRIPT tag for your DIV in one fell swoop, like so:
|
||
|
|
|
|
You do not necessary need an initial div to fill with you link list. Simply create the div using
... and in your script:
Another benefit is that you do not have to wait for the page to be fully loaded. |
||
|
|
