This might be a silly question, but where would I go to do that? My header.php is not pulling in any jquery. Could it be one of my plugins? Here is the code from my header.php.
<!DOCTYPE HTML>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<?php if (is_search()) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php } ?>
<link rel="shortcut icon" href="/favicon.ico">
<link href="<?php bloginfo('template_directory'); ?>//dfactory-53eb.kxcdn.com/css/master.css" rel="stylesheet" type="text/css" />
<title><?php bloginfo('name'); ?></title>
<!--[if lt IE 9]>
<script>
var e = ("abbr,article,aside,audio,canvas,datalist,details," +
"figure,footer,header,hgroup,mark,menu,meter,nav,output," +
"progress,section,time,video").split(',');
for (var i = 0; i < e.length; i++) {
document.createElement(e[i]);
}
</script>
<![endif]-->
<?php wp_head(); ?>
</head>