or
I have an aspx page which returns the following data:{
function window_onload() {
//pageLoad();
document.getElementById("imgAjax").style.display = "none";
window.focus();
$(document).ready(function() {
$("#go_autoCompleteInput").kendoAutoComplete({
separator: " ",
minLength: 3,
dataTextField: "value",
.... othere code
});
go_autoCompleteInput = $("#autoCompleteInput").data("kendoAutoComplete")
};
function _autoCompleteInput_onfocus() {
alert("'autoCompleteInput' 'onfocus' event just started executing.");
go_CheckBoxContentAreaEnabled.checked = false;
}