Click here to Skip to main content
15,920,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
i have included
XML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
                               <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
                               <script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>



in footer for datepicker , range slider

and also if i use

XML
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
                                    <script type="text/javascript" src="js/jquery.galleriffic.js"></script>


I get Image using Galleriffic plugin for rollover effect

if i include galleriffic.js ,jquery-1.3.2.j, , i get datepicker function not found error..

pls advice

regards
Posted
Comments
Please mark Solution 1 as the answer because it helped you to resolve the issue.

You are adding multiple js files. Don't use js/jquery-1.3.2.js file as you have already included the jquery-1.9.1.js file.

So, do like below...
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="js/jquery.galleriffic.js"></script></link>
 
Share this answer
 
Include any one jquery library.Need not required to include it multiple times for multiple plugins.
Better to go for latest possible version available by the time.eg:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/jquery.galleriffic.js"></script>

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"></link>


Hope this will resolve your issue.
 
Share this answer
 
Comments
maulikshah1990 9-Dec-13 6:00am    
Hi
thanks,,i got the ans before ur solution,,

i have other qustion ,

hi

i have

<ul>

<li><img></li>

<li><img></li>

<li><img></li>

<li><img></li>

<li><img></li>

<li><img></li>

<li><img></li>

</ul>

and want to display few li in ul and hide others and make scroll to show other li

how to do this with html and csss
Jitendra Sabat 9-Dec-13 6:13am    
I can't help you with only html and css,but using script(JQuery) you can get it done by some criteria.Let me know what your selection criteria is.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900