skroliks,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
</head>
<body>
<script>
$(function() {
function a() {
$.get("https://randomuser.me/api/", function(a) {
var b = $("<img>", {
load: function() {
$("#new-projects").html(b).dialog("open")
}
});
b[0].src = a.results[0].picture.large
})
}
$("#new-projects").dialog({
autoOpen: !1,
close: function() {
window.setTimeout(a, 5E3)
}
});
a()
});
</script>
<div id="new-projects"></div>
</body>
</html>