Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 01.05.2012, 09:52
Новичок на форуме
Отправить личное сообщение для skorpeeon Посмотреть профиль Найти все сообщения от skorpeeon
 
Регистрация: 01.05.2012
Сообщений: 9

Не работает jQuery скрипт
Здравствуйте!
Вчера решил установить на тестовый сайт скроллбар на jQuery.
Скачал необходимые файлы (плагин JScrollPane 2), подключил их
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>

	<!-- Basic Page Needs
  ================================================== -->
	<meta charset="utf-8">
	<title>Zooty Premium HTML Template</title>
	<meta name="description" content="">
	<meta name="author" content="">

	<!-- Mobile Specific Metas
  ================================================== -->
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

	<!-- CSS
  ================================================== -->
	<link rel="stylesheet" href="stylesheets/base.css">
	<link rel="stylesheet" href="stylesheets/skeleton.css">
	<link rel="stylesheet" href="stylesheets/layout.css">
	<link rel="text/css" href="stylesheets/jquery.jscrollpane.css" rel="stylesheet" media="all" />
	<script type="text/javascript" src="javascripts/jquery-1.7.2.min.js"></script>
	<script type="text/javascript" src="javascripts/jquery.mousewheel.js"></script>
	<script type="text/javascript" src="javascripts/jquery.jscrollpane.js"></script>
	


	<!--[if lt IE 9]>
		<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
	<![endif]-->

	<!-- Favicons
	================================================== -->
	<link rel="shortcut icon" href="images/favicon.ico">
	<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
	<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
	<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
	<script type="text/javascript">
    $.noConflict(); 
jQuery(document).ready(function($){ 
   $(function() 
         { 
      $('#Content').jScrollPane({showArrows: true}); 
         }); 
});
</script>

</head>
<body>
	<div class="site">
		<div class="band">

			<div class="container">
				<div class="sixteen columns">
					<img src="images/logo.png" class="logo">
				</div>
			</div><!--end container-->
			
		</div><!--end band-->
		
		<div class="band main">

			<div class="container">
				<div class="ten columns main">
				
				<div class="scroll-pane">
				
					<div class="profile_img">
						<img class="profile" src="images/profile.png" />
					</div>
						<h3>Adam Moran</h3>
						<h4>Web designer</h4>
						<p>Skeleton is a small collection of well-organized CSS &amp; JS files that can help you rapidly develop sites that look beautiful at any size, be it a 17" laptop screen or an iPhone. It's based on a responsive grid, but also provides very basic CSS for typography, buttons, tabs, forms and media queries. Go ahead, resize this super basic page to see the grid in action.Skeleton is a small collection of well-organized CSS &amp; JS files that can help you rapidly develop sites that look beautiful at any size, be it a 17" laptop screen or an iPhone. It's based on a responsive grid, but also provides very basic CSS for typography, buttons, tabs, forms and media queries. Go ahead, resize this super basic page to see the grid in action. It's based on a responsive grid, but also provides very basic CSS for typography, buttons, tabs, forms and media queries. Go ahead, resize this super basic page to see the grid in actionCSS for typography, buttons, tabs, forms and media queries. Go ahead, resize this super basic page to see the grid in action. It's based on a responsive grid, but also provides very basic CSS for typography, buttons, tabs, forms and media queries. Go ahead, resize this super basic page to see the grid in action</p>		
				</div>
			</div>
			
		
					<div class="four columns sidebar">
						
						<ul>
							<li><a href="#"><h4>Profile</h4></a></li>
							<li><a href="#"><h4>Resume</h4></a></li>
							<li><a href="#"><h4>Folio</h4></a></li>
							<li><a href="#"><h4>Contact</h4></a></li>
						</ul>
						
					</div>
			</div><!--end container-->
			
		</div><!--end band-->	
	</div><!--end site-->


	<!-- JS
	================================================== -->
	<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
	<script src="javascripts/tabs.js"></script>

<!-- End Document
================================================== -->
</body>
</html>


Но в результате у меня появился только обычный скроллбар вместо jQuery.


Пробовал удалять строки вызова jQuery
<script type="text/javascript" src="javascripts/jquery-1.7.2.min.js"></script>
	<script type="text/javascript" src="javascripts/jquery.mousewheel.js"></script>
	<script type="text/javascript" src="javascripts/jquery.jscrollpane.js"></script>

Но ничего не менялось. Вывод - не работает сам скрипт!
Что я сделал не так?
Заранее благодарен!

P.S. дизайн не закончен, сделал только базовый "скелет" так сказать Сайдбар будет не такой уродливый

Последний раз редактировалось skorpeeon, 01.05.2012 в 09:54.
Ответить с цитированием
  #2 (permalink)  
Старый 02.05.2012, 10:28
Аватар для Scepticus
Новичок на форуме
Отправить личное сообщение для Scepticus Посмотреть профиль Найти все сообщения от Scepticus
 
Регистрация: 27.04.2012
Сообщений: 9

Мне кажется, что
Цитата:
$('#Content').jScrollPane({showArrows: true});
будет применяться к элементу с ид=Content, которго тут нет. А если указать ему конкретный div?
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Скрипт работает только в Firebug photos-masters Элементы интерфейса 4 07.12.2011 19:12
Простой скрипт не работает в Chrome illusionoflife Общие вопросы Javascript 11 21.11.2011 10:39
jquery не работает в цикле alexus jQuery 3 03.09.2011 14:49
не работает форма в окне, вызванном jquery page slide ikar jQuery 0 31.07.2011 22:55
Не работает jQuery меню с AJAX eugene1986 jQuery 0 08.07.2010 18:49