I am trying to get the click event of a submit button on my form...
try this
$('#submitDemo').live("click",function() { // your stuff });
As @px5x2 pointed that live is deprecate so instead of live use ON
$('#submitDemo').on("click",function() { // your stuff });