I am not getting any output. Can anyone help me out of this problem?
I have been working on this MVC project in ASP.net for a few days. I want to integrate the jQuery-UI in my project. I imported all the required files but I did not get any output. I am including sample accordion code below.
<div id="acc">
<h4>Section1</h4>
<div>
Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
</div>
<h4>Section2</h4>
<div>
Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.
</div>
<h4>Section3</h4>
<div>
Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
</div>
</div>
<script src="~/Scripts/jquery-1.10.2.min.js"></script>
<script src="~/Scripts/jquery-ui.min.js"></script>
<link href="~/Content/jquery-ui.css" rel="stylesheet" />
<script>
$(document).ready(function ()
{
$("#acc").accordion({event:"mouseover"});
}
);
</script>
Your code looks fine - see the snippet below where I took the HTML and replaced the relative included JS/CSS files and replaced them with those from the Google hosted Libraries CDN. One option is to use those files hosted from Google or another host, which can offer advantages like quicker load time potentially for users around the world (see this answer for more information).
If you continue to host your own files, ensure that the files are being downloaded properly. In most browsers, you can press F12 to load the browser console. For more information, check out the video on this page. You might see errors like the 404 error in the image below, where the CSS file was not found: