Hello,
i need load a page and inject the jQuery on the page, im doing it but not work:
My C# Xamarin Code:
//Add Loader
hwv.CallJsFunction("var Loader=new function(){var t=function(){var t=document.createElement('script');t.src='https://code.jquery.com/jquery-2.1.3.min.js',document.body.appendChild(t);}; t();}");
//Call jquery
hwv.CallJsFunction("$(function() { $(\"*\").css(\"color\", \"red\") });");
My JavaScript Code:
var Loader = new function(){
var t=function(){
var t = document.createElement('script');
t.src='https://code.jquery.com/jquery-2.1.3.min.js',
document.body.appendChild(t);
};
t();
}