Jquery conflict help

Jquery conflict help

Hello,

I have 2 jqeury code on my site but they are conflicting, any idea how to remedy to this please?

Thanks

code 1
  1. jQuery.noConflict()(function($){
  2. "use strict";

  3. /* Tabs */
  4. jQuery('.shortcode_tabs').each(function(index) {
  5.     var i = 1;
  6.     jQuery('.shortcode_tab_item_title').each(function(
  7.         index) {
  8.         jQuery(this).addClass('it' + i);
  9.         jQuery(this).attr('whatopen', 'body' + i);
  10.         jQuery(this).addClass('head' + i);
  11.         jQuery(this).parents('.shortcode_tabs').find(
  12.             '.all_heads_cont').append(this);
  13.         i++;
  14.     });
  15.     var i = 1;
  16.     jQuery('.shortcode_tab_item_body').each(function(
  17.         index) {
  18.         jQuery(this).addClass('body' + i);
  19.         jQuery(this).addClass('it' + i);
  20.         jQuery(this).parents('.shortcode_tabs').find(
  21.             '.all_body_cont').append(this);
  22.         i++;
  23.     });
  24. });
  25. jQuery('.shortcode_tabs .all_body_cont div:first-child')
  26.     .addClass('active');
  27. jQuery(
  28.     '.shortcode_tabs .all_heads_cont div:first-child').addClass(
  29.     'active');

  30. jQuery('.shortcode_tab_item_title').on('click', function() {
  31.     jQuery(this).parents('.shortcode_tabs').find(
  32.         '.shortcode_tab_item_body').removeClass('active');
  33.     jQuery(this).parents('.shortcode_tabs').find(
  34.         '.shortcode_tab_item_title').removeClass('active');
  35.     var whatopen = jQuery(this).attr('data-open');
  36.     jQuery(this).parents('.shortcode_tabs').find('.' +
  37.         whatopen).addClass('active');
  38.     jQuery(this).addClass('active');
  39. });
  40. /* Tabs */

  41. /* Tooltip  */
  42. jQuery(function($) {
  43.     $('.tooltip_s').tooltip()
  44. });
  45. /* Tooltip  */

  46. /* Testimonials */
  47. jQuery('.bxslider').bxSlider({
  48.     mode: 'fade',
  49.     touchEnabled: true,
  50.     oneToOneTouch: true,
  51.     pagerCustom: '.bx-pager',
  52.     nextSelector: '.bx-next',
  53.     prevSelector: '.bx-prev',
  54.     auto: true
  55. });

  56. /* Testimonials */

  57. /* Video Parallax */
  58. $(document).ready(function() {
  59.     $('a').nivoLightbox();
  60. });
  61. /* Video Parallax */

  62. /* Portfolio & Portfolio Filter */
  63. $(window).load(function() {
  64.     $('.grid').isotope({
  65.         // options...
  66.         itemSelector: '.grid-item',
  67.     });

  68.     var $container = $('.js-isotope');
  69.     $container.isotope({
  70.         filter: '*',
  71.         layoutMode: 'sloppyMasonry',
  72.     });
  73.     $('.filter-button-group div').on('click', function() {
  74.         $('.filter-button-group .cbp-filter-item-active').removeClass('cbp-filter-item-active');
  75.         $(this).addClass('cbp-filter-item-active');
  76.         var selector = $(this).attr('data-filter');
  77.         $container.isotope({
  78.             filter: selector,
  79.             animationOptions: {
  80.                 duration: 750,
  81.                 easing: 'linear',
  82.                 queue: false
  83.             }
  84.         });
  85.         return false;
  86.     });
  87. });
  88. /* Portfolio & Portfolio Filter */

  89. });

code 2
  1. <script type="text/javascript">
  2.     
  3. $(document).ready(function()
  4. {
  5.  $(document).on('submit', '#reg-form', function()
  6.  {  
  7.   $.post('processform.php', $(this).serialize())
  8.   .done(function(data)
  9.   {
  10.    $("#reg-form").fadeOut('slow', function()
  11.    {
  12.     $(".result").fadeIn('slow', function()
  13.     {
  14.      $(".result").html(data); 
  15.     });
  16.    });
  17.   })
  18.   .fail(function()
  19.   {
  20.    alert('fail to submit the data');
  21.   });
  22.   return false;
  23.  }); 
  24.  
  25. });
  26. </script>