$(function() { $( "#theme-button" ).click(function() { $("#theme-menu").show(); $( document ).on( "click", function() { $("#theme-menu").hide(); }); $( ".theme-color" ).on( "click", function() { var id = $(this).attr("id"); $("#theme-style").attr("href",id+".css"); }); return false; }) });