my arrows to change images aren´t working on internet explorer (unslider plugin)

my arrows to change images aren´t working on internet explorer (unslider plugin)

Im trying to use unslider jQuery plugin but Im having one issue.

Unslider is already working fine, but my arrows to change images aren´t working on internet explorer.

On google chrome is working perfectly.

Do you see why this can be happening?

I have my example here:

http://jsfiddle.net/bdmU4/7/

This is my jQuery script to start this plugin:


  1. $(function (){
  2.       var unslider = $('.banner').unslider({
  3.         speed: 3000,               
  4.         delay: 10000,      
  5.         pause: true,     
  6.         keys: true,       
  7.         dots: true ,     
  8.     });

  9.     $('.unslider-arrow').click(function() {
  10.         var fn = this.className.split(' ')[1];
  11.         event.preventDefault();

  12.         unslider.data('unslider')[fn]();
  13.     });
  14. });