/* == Theme Options JavaScript == */ jQuery(document).ready(function() { jQuery('#body-font-sample').css("font-family",jQuery('#body-font').val()); jQuery('#heading-font-sample').css("font-family",jQuery('#heading-font').val()); jQuery('#blog-name-font-sample').css("font-family",jQuery('#blog-name-font').val()); if(getCookie("currtab") != "" && getCookie("currtab") != null) { jQuery('.tab').removeClass('current-tab'); var currtab = getCookie("currtab"); jQuery('#' + currtab).addClass('current-tab'); var currsection = currtab.replace('tab','section'); jQuery('.section').hide(); jQuery('#' + currsection).show(); } jQuery('.tab').click(function() { var tabid = jQuery(this).attr("id"); var currtabid = jQuery(".current-tab").attr("id"); if(tabid != currtabid) { jQuery(".settings-error").fadeOut(300); jQuery(".tab").removeClass("current-tab"); jQuery(this).addClass("current-tab"); jQuery(".section").slideUp(400); jQuery('#' + tabid.replace("tab","section")).slideDown(400); } }); jQuery(".font-select").change(function() { jQuery("#" + jQuery(this).attr("id") + "-sample").css("font-family",jQuery(this).val()); }); jQuery('#category-select').change(function() { var elem = document.getElementById('category-select'); var list = ""; var i; for(i=0;i