Показать сообщение отдельно
  #1 (permalink)  
Старый 05.07.2016, 22:58
Новичок на форуме
Отправить личное сообщение для New2017 Посмотреть профиль Найти все сообщения от New2017
 
Регистрация: 05.07.2016
Сообщений: 3

Всегда Активный первый элемент страницы
Здравствуйте. Помогите решить задачу.
В jquery не разбираюсь,
нужно чтобы первый элемент на странице был по умолчанию открыт. http://new1.grkmask.ru

Подскажите, пожалуйста, что нужно изменить/добавить?

<script>
            jQuery(document).ready(function($) {
				
				if (jQuery(window).width() > 1024) {
					base_width = $('.strip-menu').attr('data-width');
					count = $('.strip-menu').attr('data-count');
					$('section.strip-item').hover(function(){
						$('.strip-item').css('width', (100-base_width*2)/(count-1)+'%');
						$(this).css('width', base_width*2+'%');
					},function(){
						$('.strip-item').css('width', base_width+'%');				
					});
				}
				if (jQuery(window).width() > 760 && jQuery(window).width() < 1025) {
					jQuery('.wrapped_link').click(function(e) {
						if (!jQuery(this).parents('.strip-item').hasClass('hovered')) {
							base_width = $('.strip-menu').attr('data-width');
							count = $('.strip-menu').attr('data-count');						
							e.preventDefault();
							jQuery('.strip-item').removeClass('hovered');
							jQuery(this).parents('.strip-item').addClass('hovered');
							jQuery('.strip-item').css('width', (100-base_width*2)/(count-1)+'%');
							jQuery(this).parents('.strip-item').css('width', base_width*2+'%');
						}
					});
				}
            });	
        </script>
Ответить с цитированием