Click here to Skip to main content
15,895,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
<script src="jq/jquery.min.js" type="text/javascript"></script>


this refrence in master page and



XML
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
    <script type="text/javascript" src="http://malsup.github.com/chili-1.7.pack.js"></script>
    <script src="jq/jquery.cycle.all.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://malsup.github.com/jquery.easing.1.3.js"></script>



this are in content page i am getting object doesnt support this method but when i remove master page script everything working fine

but i need master page script for menu control jquery please guide me...
Posted
Comments
DamithSL 11-May-14 0:35am    
what is the version of jquery in your master page?

 
Share this answer
 
I think you have wrong version of jquery in your master page. try to replace
JavaScript
<script src="jq/jquery.min.js" type="text/javascript"></script> 

with
JavaScript
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>

in your master page
And Also check Proper way to use JQuery when using MasterPages in ASP.NET?[^]
 
Share this answer
 
v3

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