Translate iframe
You have an iframe in your page and you need to translate it.
Pre-required
Setup
<script src="https://cdn.weglot.com/weglot.min.js"></script>
<script>
// In your iframe
Weglot.initialize({
api_key: "wg_xxxx",
hide_switcher: true // You already have a switcher in parent window
});
</script><script src="https://cdn.weglot.com/weglot.min.js"></script>
<script>
// In your parent window
Weglot.initialize({
api_key: "wg_xxxx",
translate_iframes: ["#iframe-id", ".my-little-iframe"]
});
</script>
Tips
Last updated