Ethnio should be compatible with any other scripts you run on your site, but we can't totally guarantee this, since every environment is different. For example, you can run any version of JQuery on your site, since we don't rely on any external libraries for our functionality. The best way to test it is to login to your account, create a screener, enter the URL you'd like to test on, and then click the screener name and "preview" to quickly get a preview URL from inside ethnio to try. Here's an example of what that preview looks like:
Script Compatibility
Follow
Have more questions? Submit a request
Thanks for this. Specifically, I'm trying to fetch and execute the ethn.io popup with jQuery's getScript() function. I verified ethn.io's javascript is being fetched, but it's not being executed. You can try in the Chrome/Firefox console.
Hey Chirag, great question. We'll have to check with our developer on this and get back to you.
Thanks, specifically I'm trying the following.
$.getScript("//ethn.io/remotes/12345");
The ID has been changed to '12345' to protect the innocent
Oops, I meant to say $.getScript("http://ethn.io/remotes/12345");
We tested it and are sure - it's working. But Note, that screener saves cookie to don't
be showed twice. So you need clear cookies each time for testing. Also You can use this small peace of code for including ethnio screener.
var screener = document.createElement('script');
screener.src = "//ethn.io/remotes/1234";
screener.async = "true";
screener.charset="utf-8";
document.body.appendChild(screener);