Preview:
let promise = check_login();
promise.success(function (data) {
  //console.log(data);
  if(data["loggedin"] === 1){
  }
});

function check_login(){
    return jQuery.ajax(
      {
        url: "../custom_scripts/api/user/get_user_info.php",
        type: 'GET',
        dataType: 'json',
      }
    );
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter