• Не работает с JQuery что делать?

    @mayil Автор вопроса
    Владимир Проскурин, Существует из готовой верстки переношу if ($("#mainNav").offset().top > на это ругается
  • Не работает с JQuery что делать?

    @mayil Автор вопроса
    Александр Соболев,
    (function($) {
      "use strict"; // Start of use strict
    
      // Smooth scrolling using jQuery easing
      $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() {
        if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
          var target = $(this.hash);
          target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
          if (target.length) {
            $('html, body').animate({
              scrollTop: (target.offset().top - 70)
            }, 1000, "easeInOutExpo");
            return false;
          }
        }
      });
    
      // Scroll to top button appear
      $(document).scroll(function() {
        var scrollDistance = $(this).scrollTop();
        if (scrollDistance > 100) {
          $('.scroll-to-top').fadeIn();
        } else {
          $('.scroll-to-top').fadeOut();
        }
      });
    
      // Closes responsive menu when a scroll trigger link is clicked
      $('.js-scroll-trigger').click(function() {
        $('.navbar-collapse').collapse('hide');
      });
    
      // Activate scrollspy to add active class to navbar items on scroll
      $('body').scrollspy({
        target: '#mainNav',
        offset: 80
      });
    
      // Collapse Navbar
      var navbarCollapse = function() {
        if ($("#mainNav").offset().top > 100) {
          $("#mainNav").addClass("navbar-shrink");
        } else {
          $("#mainNav").removeClass("navbar-shrink");
        }
      };
      // Collapse now if page is not at top
      navbarCollapse();
      // Collapse the navbar when page is scrolled
      $(window).scroll(navbarCollapse);
    
      // Modal popup$(function () {
      $('.portfolio-item').magnificPopup({
        type: 'inline',
        preloader: false,
        focus: '#username',
        modal: true
      });
      $(document).on('click', '.portfolio-modal-dismiss', function(e) {
        e.preventDefault();
        $.magnificPopup.close();
      });
    
      // Floating label headings for the contact form
      $(function() {
        $("body").on("input propertychange", ".floating-label-form-group", function(e) {
          $(this).toggleClass("floating-label-form-group-with-value", !!$(e.target).val());
        }).on("focus", ".floating-label-form-group", function() {
          $(this).addClass("floating-label-form-group-with-focus");
        }).on("blur", ".floating-label-form-group", function() {
          $(this).removeClass("floating-label-form-group-with-focus");
        });
      });
    
    })(jQuery); // End of use strict
  • Не работает с JQuery что делать?

    @mayil Автор вопроса
    Александр Соболев, а теперь такая ошибка 5b8f9f6d9d0e4717237781.png хотя на локалке все отлично
  • Не работает с JQuery что делать?

    @mayil Автор вопроса
    А сейчас дает такую проблему
    5b8efbb5b4bae901762459.png
  • Не работает с JQuery что делать?

    @mayil Автор вопроса
    add_action( 'wp_enqueue_scripts', 'jquery_script_method' );
    function jquery_script_method() {
    wp_deregister_script( 'jquery' );
    wp_register_script( 'jquery', 'https://code.jquery.com/jquery-3.3.1.js', false, null, true );
    wp_enqueue_script( 'jquery' );
    }

    add_action('wp_enqueue_scripts', 'action_function_name_7714' );
    add_action('wp_enqueue_style', 'addstyle');

    function action_function_name_7714(){
    wp_enqueue_script( 'bootsrap-script', get_template_directory_uri(). '/vendor/bootstrap/js/bootstrap.bundle.min.js', array('jquery'), $in_footer );
    wp_enqueue_script( 'jquery-easing', get_template_directory_uri(). '/vendor/jquery-easing/jquery.easing.min.js', array('jquery'), $in_footer );
    wp_enqueue_script( 'magnific-popupg', get_template_directory_uri(). '/vendor/magnific-popup/jquery.magnific-popup.min.js', array('jquery'), $in_footer );
    wp_enqueue_script( 'jqBootstrapValidation', get_template_directory_uri(). '/js/jqBootstrapValidation.js', array('jquery'), $in_footer ); wp_enqueue_script( 'freelancer', get_template_directory_uri(). '/js/freelancer.min.js"', array('jquery'), $in_footer );
    wp_enqueue_style( 'bootsrap', get_template_directory_uri(). '/vendor/bootstrap/css/bootstrap.css', null, false );
    wp_enqueue_style( 'font-awesome', get_template_directory_uri(). '/vendor/font-awesome/css/font-awesome.min.css', null, false );
    wp_enqueue_style( 'font-montserrat', 'https://fonts.googleapis.com/css?family=Montserrat...', null, false );
    wp_enqueue_style( 'font-lato', 'https://fonts.googleapis.com/css?family=Lato:400,7...', null, false );
    wp_enqueue_style( 'popup', get_template_directory_uri(). '/vendor/font-awesome/css/font-awesome.min.css', null, false );
    wp_enqueue_style( 'freelancer', get_template_directory_uri(). '/css/freelancer.min.css', null, false );
    wp_enqueue_script( 'conatctme', get_template_directory_uri(). '/js/contact_me.js"', array('jquery'), $in_footer );
  • Как спарсить данные в JS?

    @mayil Автор вопроса
    MaxKorz, пишу парсер в instagram мне нужно получить данные между {"logging_page_id":"profilePage_ и "
  • Нужна ли вышка для веб-разработчика?

    @mayil Автор вопроса
    Мне сказали тип без него не как сейчас
  • Как растянуть сайт на весь экран?

    @mayil
    HTML приложи и проблема в том что ты наверное указал явную высоту как он может растянуться на весь экран?