I would like this script to automatically run after 5 seconds. Just getting into jquery and did not know how to do this... Thanks!
$(document).ready(function(e) {
$('#dropdown').on('click',function(){
$('.dropdownwrap').slideToggle();
});
});