I have one function some where in the code as i specify below
$(function () {
function triggerSortable() {
//Here is some some code
}
});
Now inside
$(document).ready(function () {
triggerSortable();
});
I have tried to call the function but is shows me below error.
Uncaught ReferenceError: triggerSortable is not defined