Skip to content Skip to sidebar Skip to footer

I Can't Use Javascript Code With Bootstrap Template

I use some Bootstrap template with my struts2 applicaion : http://www.bootstrapzero.com/bootstrap-template/adminlte that uses these files : https://github.com/almasaeed2010/AdminL

Solution 1:

This might be a jQuery conflict. Try using the noConflict in jQuery like this:

var$j = jQuery.noConflict();

Then your script will look like this:

<script>var $j = jQuery.noConflict();    

$j(document).ready(function(){

//javascript code     
});

</script>

Hope this helps!

Post a Comment for "I Can't Use Javascript Code With Bootstrap Template"