Hello. I need help to function in Internet Explorer

Hello. I need help to function in Internet Explorer

works for Chrome, Mozilla ... but I need help please to work in Internet Explorer

Detail:

  1. $(document).ready(function () {
  2.  $.each({ nombre:'Nombre', apellido:'Apellido', razon:'Razón Social' },
  3.    function(key,val){$('.datos_pers').append('<a class="'+key+'_tip">'+val,
  4.   '<span class="'+key+'_arrow">▼');
  5.   var tip_datos = $('a.'+key+'_tip'+',span.'+key+'_arrow');   
  6.   $('input.'+key).hover(function(){ tip_datos.toggle(); 
  7.    });
  8.  });

  9. });

MIKEPIANIST