calling Javascript from c# using awesomium
I'm trying awesomium for create a basic app, I'm testing the js <----> c# communication but this doesn't seem work well...I create a local html and open it..so far so good..but when I try call js nothing happen, no error, no bug, nothing, simply this doesn't call js.. my basic js code is: var base = { newItem : function(item){ $("#botones").append('<div class="botonMenu">' + item + '</div>'); }, other : function(){ alert("hi!!"); } } if I test this inside firebug obviously I can call my functions well and the items are created or the alert box... now..my c# code is this //I've wrote this code