Is it possible in Javascript/JQuery to get the base64 image data from an image on the page?
For example is there a function like...
<img id="foo" src="https://mywebsite.com/bar.png">
<script>
var base64Data = $('#foo').base64();
</script>
Is it possible in Javascript/JQuery to get the base64 image data from an image on the page?
For example is there a function like...
<img id="foo" src="https://mywebsite.com/bar.png">
<script>
var base64Data = $('#foo').base64();
</script>