Skip to content

Instantly share code, notes, and snippets.

View mrtanloveoflife's full-sized avatar

mrtanloveoflife

View GitHub Profile
@shuson
shuson / sample.js
Last active September 19, 2023 08:50
get base64 raw data of image from responseBody using jquery ajax
$.ajax({
type: "GET",
url: "imageURL",
beforeSend: function (xhr) {
xhr.overrideMimeType('text/plain; charset=x-user-defined');
},
success: function (result, textStatus, jqXHR) {
if(result.length < 1){
alert("The thumbnail doesn't exist");
$("#thumbnail").attr("src", "data:image/png;base64,");