I am trying to embed some javascript into a text panel item but it is not showing. I literally see a blank box. The goal is to implement this simple embedding javascript for aprs.fi.
You can see my website live at https://telemetry.faradayrf.com. Whenever I look at the elements I see that the script CSS is set to not display with CSS from user agent stylesheet. What’s going on and how can I show Javascript to embed this Google Maps and APRS data per the linked website?
Why would you want your script to be visible? It is not a html element that should be visible (like the input tag for example). That is not the reason it is not working.
All the script is doing is creating an iframe so you could just look at embed.js and figure out the parameters and create the iframe directly. Something like this:
Wow thanks @daniellee. I totally missed this and you’re correct. That code worked fine. I’ve contacted the developer to make sure we’re on the same page with the terms of use and implementation of this code. I appreciate it! It helps to have this direction such that I can actually Google for relevant info to help out.