Please guide how to work with bootstrap collapse and image slider- carousel
in Umbraco. I added the javascript files and bootstrap files in master template and I added the html code in the home page content part.
These files are working fine in the normal html page. But when coming to Umbraco, its not working.
jquery
Hello,
Please guide how to work with bootstrap collapse and image slider- carousel in Umbraco. I added the javascript files and bootstrap files in master template and I added the html code in the home page content part.
These files are working fine in the normal html page. But when coming to Umbraco, its not working.
Hi Priya
Can you post some code, it will be much easier for someone to help you if we can see your template code.
Regards
Gary
I added these in the head tags
at the bottom of the master.cshml(template)
and I try to add the collapse from bootstrap code and it has follows
it not even shows the "content here" text. when I do this in normal html, i got it. The site which I couldn't get is "demo08.kiranow.com"
Hi Priya
JQuery is not loading on your page 'unexpected token :'
bootstrap relies on JQuery and so doesn't load, and your collapse doesn't work...
It could be the ordering your scripts are loading; you have:
but Jquery.min.js is just a minified version of jquery, which you load again after the fanoe.js, and similarly you have bootstrap twice...
try just:
ie remove the minified versions 'for now' and see if that resolves the issue...
No its not working. I changed my whole master.cshtml like this
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage @{ Layout = null; var home = @CurrentPage.Site(); }
but still it doesn't work
is working on a reply...