here is my code :
string script = "GoNext()";
ScriptManager.RegisterClientScriptBlock(this, GetType(), "next", script, true);
client side :
$(document).ready(function () {
function GoNext() {
$("#wizard").scrollable().next();
}
});
i am getting a console error saying GoNext is undefined