In the browser, I check in inspect item, and I get the following error:
Uncaught TypeError: url.indexOf is not a function
I imagine it's because of a function I use Jquery, which is the following:
var baseUrl = '<%= ResolveUrl("~/") %>';
$("#subpagina").html("cargando").load(baseUrl + "Home/Inicio", function () {
})
I would like to know what I should do, or how to update the jQuery function.