JSFiddle - React, Tailwind, and code Playground

by praveen_prasad

JavaScript

var capturedAjax= $.ajax;

$.ajax=function myCustomAjax(options)
{
     options.beforeSend=function()
     {
        alert('before send captured');
     }
     return capturedAjax(options);
}

    
    jQuery.get('http://google.com');