AJAX Not running

AJAX Not running

I have a main.js file attached to my index.php page. I load my contend via AJAX into my index.php page.
I load a page via ajax which works. 
On this loaded page I want to call another AJAX script. It get Started and End in my console log but AJAX does not work

Why?

  1.    $( "body"). on( 'click'"#acceptQuote"function( e){
         console. log( 'Start');
         e. preventDefault();
         var  q =  $( "#quantity2"). val();
         var  i =  $( "#ID"). val();
         var  p =  $( "#offeredPrice"). val();
         $. ajax({
           url:  'scripts/acceptquote.php',
           type:  'POST',
           data: { "ID" :  i"Count" :  q"OfferedPrice" :  p},
           dataType:  'text',
           success :  function( responsetextStatusjqXHR) {
             console. log( "Yay!");
          },
           error :  function( jqXHRtextStatuserrorThrown){
             console. log( textStatuserrorThrown);
         }
        });
         console. log( 'End');
      })