I am trying to implement a previous button on a test app. I cant get button id="prev" to fire. I am keeping it simple like this:
//Begin Previous Button Click Function
//
$("#btn2").click(function() {
alert("i'm in previous button click");
});
// End of Previous Click Function
Here is the jsfiddle I get nothing in the console and setting a break point in function does not get called when stepping thru program. I checked the DOM to make sure btn2 was there and it is. Any suggestion appreciated.