JSFiddle - React, Tailwind, and code Playground
by borayeris
HTML
<div class="ajaxxx">
</div>
JavaScript
$(function(){
$.ajax({
url: "https://photos.google.com/share/AF1QipOHPoUQ2lK6-_nlvRYBE9nzyhx6J5VTtidwCQbOGEboqzWicx_0gYcui3ij5juB1Q?key=alhMWG03NnN3Mk04WmlhcUhPcEtNX0JNSEk3Z1NB",
success: function( data ){
$('.ajaxxx').html( data );
}
});
});