Why this doesn't work actually please?
<script>
$('button[type=submit]').not('.disabled').click(function(event) {
alert('Button Clicked');
});
</script>
<button type="submit" class="btn btn-primary btn-md">Click me</button>
When I click on this button, it should fire the alert.
I also tried this:
$('button[type=submit]:not(.disabled)').click(function(event) {