14 lines
152 B
JavaScript
14 lines
152 B
JavaScript
|
$(document).ready(function () {
|
||
|
//other things to do on document ready, separated for ajax calls
|
||
|
docReady();
|
||
|
});
|
||
|
|
||
|
|
||
|
function docReady() {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|