I'm utilizing Sammy JS and AJAX for the frontend of my project.
For instance, the URL is: www.mysite.com/#/index
(function($) {
var app = $.sammy(function() {
this.get('#/index', function() {
init();
});
});
$(function() {
app.run()
});
})(jQuery);
function int(){
alert('testing');
}
While testing in Firefox and Chrome, I receive the alert message as expected. However, in Internet Explorer, it doesn't work and there are no error messages displayed either. Can anyone help me troubleshoot this issue?