I have this code that scrolls to specific elements when their ID is put in hrefs (demo here):
$('a[href*=#]:not([href=#])').click(function () {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - 125
}, 1000);
return false;
}
}
});
Problem is, I think it conflicts with the Bootstrap JS components, especially the modal. Now, opening my modal doesn't seem to work like it did before:
LINK:
<a href="#myModal" role="button" class="btn btn-primary btn-large" data-toggle="modal">Sign-up for Beta!</a>
JS:
$('#myModal').modal({
keyboard: true,
show: false,
backdrop: 'static'
});
ELEMENT:
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
</div>
Can anyone help me resolve this conflict? Any piece of advice would be highly appreciated. Thanks!