I created a object array inside a click function like this:
$(".tableButton").click(function()
{
CK.tableArray = ["test1","test2","test3","test3"]; // this works
processTableInfo(CK.tableArray); // this works
});
Now I need to access the CK.tableArray from another part of the application using the same array information from click function above. I need to access a different range of elements inside this array from above...
$(".displayTable").click(function()
{
alert(CK.tableArray) // not define
})