I have the following lines of code in my .js
file
$(triggers.restart).live('click', function (e) {
e.preventDefault();
plugin.method.startQuiz(this);
});
The code is working fine in Firefox or Chrome but not in Internet Explorer. What might be wrong?