من کد خودم رو بین

$(document).ready(function(){
مینویسم توی اینترنت اکسپرور کار میکنه اما توی فایر فاکس نه وقتی کد رو بیرونه این تگ مینویسم توی فایر فاکس کار میکنه توی اینترنت اکسپرور کار میکنه کسی می تونه راه نمایی کنه کدم هم این است :


کد HTML:
 $(document).ready(function(){

});
  /*********************************** for change src img*********/
 $(".IMGME").change(function () {
          var str = "";
          $(".IMGME option:selected").each(function () {
                str += $(this).val() + " ";
              });
         
           str = jQuery.trim(str);

         $("#IMGSAMPLE").attr("src", "../img/slim/"+str+".png");

        })
        .change();
/**********************************************/
  
   //if submit button is clicked  
     $('#submit').click(function () {          
      
              var str = "";
          $(".IMGME option:selected").each(function () {
                str += $(this).val() + " ";
              });
          
         var  TODATESTJ = $('input[name=TODAYTEXT]');  
         var IMGMEJ = $('input[name=IMGME]');  
         var MODEJ = $('input[name=MODE]');  
       
       //organize the data properly  
         var data = 'TEXTME=' + TODATESTJ.val() + '&IMGME=' + str + '&MODE='  
         + MODEJ.val() ; 
    
             //disabled all the text fields  
         $('input,select,button').attr('disabled','true'); 
             //show the loading sign  
         $('.loading').show();
    
    
    
    
    
     $.ajax({  
             //this is the php file that processes the data and send mail  
             url: "config.php",   
               
             //GET method is used  
             type: "GET",  
   
             //pass the data           
             data: data,       
               
             //Do not cache the page  
             cache: false,  
               
             //success  
             success: function (html) {                
                 //if process.php returned 1/true (send mail success)  
               
                     $('.form').fadeOut('slow');                   
                       
                     //show the success message  
                     $('.done').fadeIn('slow');  
                       $(".done").html(html);
                 //if process.php returned 0/false (send mail failed)  
                                
             }         
         });  
    
     });