I have the following:
$('#song').css('color','green');
$('#song').load('getSong.py');
I have the first statement to verify that jQuery is working properly. It is. The <div id='song' style='color:darkblue'> turns green. But the url getSong.py is not called. I have Fiddler2 turned on and no web url is called.
What could I have done wrong?