tidusx18
10/4/2017 - 6:01 PM

Copy From My BB Sandbox

var destinationCourseId = document.querySelector('a[href*="cpbucket"]').href.split('/')[3];
var copyURL = 'https://fiu.blackboard.com/webapps/blackboard/execute/cp_copy_content?navItem=cp_copy_course&course_id=_89343_1&target=no';
var newWindow = window.open(copyURL, 'GET');

document.addEventListener('DOMContentLoaded', function() {
    // Edit options below as needed
	newWindow.document.getElementById('destinationCourseId').value = destinationCourseId;
	newWindow.document.getElementById('copyLinkToCourseFiles').checked = true;
	newWindow.document.getElementById('toc_1567112_1_id').click();
	newWindow.document.getElementById('selectCourse').submit();
});