Hey so kinda new to the world of jquery but I was wondering, Can I nest all my jquery under one no-conflict or do I have to keep adding the no-conflict for every bit of code...(as I have it now).
Using Wordpress, so the no-conflict jquery code up top is a must.
jQuery(document).ready(function($) {
    //Modal contact pop-up
    $(".modal-pop").click(function() {
        $("#myModal").modal();
    });
    $(".email").click(function() {
        $("#myModal").modal();
    });
});
//Navbar fixed top on scroll
jQuery(document).ready(function($) {
    $(document).ready(function() {
        var menu = $('#site-nav');
        var origOffsetY = menu.offset().top;
        function scroll() {
            if ($(window).scrollTop() >= origOffsetY) {
                $('#site-nav').addClass('navbar-fixed-top');
                $('.main-content').addClass('menu-padding');
            } else {
                $('#site-nav').removeClass('navbar-fixed-top');
                $('.main-content').removeClass('menu-padding');
            }
        }
        document.onscroll = scroll;
    });
});
//Image Overlay for Images in Portfolio section
jQuery(document).ready(function($) {
    $(function() {
        // OPACITY OF BUTTON SET TO 0%
        $(".roll").css("opacity", "0");
        // ON MOUSE OVER
        $(".roll").hover(function() {
                // SET OPACITY TO 70%
                $(this).stop().animate({
                    opacity: .7
                }, "slow");
            },
            // ON MOUSE OUT
            function() {
                // SET OPACITY BACK TO 50%
                $(this).stop().animate({
                    opacity: 0
                }, "slow");
            });
    });
});
//Smooth scrool to section
jQuery(document).ready(function($) {
    $(function() {
        $('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
                    }, 1000);
                    return false;
                }
            }
        });
    });
});
 
     
     
     
    