Having an issue calling a jquery function from a javascript function. I am sure I have done it before... just cant understand the issue I am having. Thanks for any help you could provide.
$(document).ready(function(){
function funB() {
alert("B is working");
};
});
funA();
function funA() {
alert("A is working");
funB();
};