I have a method written in JavaScript let's say 'callme' and I have some jQuery code written within the block $(document.ready).
My question is how to call the existing JavaScript method 'callme' from within the jQuery block.
The assumed listing is as follows,
function callme(){
// do some complex processing. I don't want to do this in jQuery
}
$(document).ready(function(){
// I need to call callme function from here.
});
Please help me out.