WordPress Media Uploader custom Javascript not working

The solution was to simply wrap my JQuery in a function like this:

$('#wpcontent').ajaxStop(function() {

    $('.attachment-filters').change(function(){
        if($(this).val() === 'uploaded'){
            alert("Uploaded images selected");
        } else {
            alert("Other option selected");
        }
    });

});