Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Hello there! I'm working on this site and everything is working fine in chrome, firefox, safari, and opera but IE shows an error message which is this:

Error Details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0, Windows NT 5.1; Trident/4.0;. NET CLR 1.1.4322;. NET CLR 2.0.50727;. NET CLR 3.0.4506.2152;. NET CLR 3.5.30729;. NET4.0C,. NET4.0E)
Timestamp: Fri, October 19, 2012 6:06:11 p.m. UTC


Message: 'jQuery' is undefined.
line: 5
Character: 1
Code: 0
http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/jquery-ui-1.8.24.custom.min.js?ver=3.4.2


Message: Object expected
Online: 1
Character: 1
Code: 0
http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/gnav.js?ver=3.4.2


Message: Object expected
Online: 12
Character: 2
Code: 0
http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/flexslider/jquery.flexslider.js?ver=3.4.2


Message: Object expected
Online: 1
Character: 1
Code: 0
http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/flexslider/flexslider-init.js?ver=
>3.4.2

This the portion of my "functions.php" file used to enqueue my scripts:

function gnvls_scripts() { 
wp_register_script( 'jquery-ui', get_template_directory_uri() . '/js/jquery-ui-1.8.24.custom.min.js', array('jquery')); 
wp_register_script( 'mediaqueries-script', get_template_directory_uri() . '/js/css3-mediaqueries.js', array('jquery'));
wp_register_script( 'gnav-script', get_template_directory_uri() . '/js/gnav.js', array( 'jquery', 'jquery-ui' ));
//enqueue the script:
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui');
wp_enqueue_script('mediaqueries-script');   
wp_enqueue_script('gnav-script');
}
add_action( 'wp_enqueue_scripts', 'gnvls_scripts' );

/* FLEXSLIDER -----------------------------------*/

function gn_add_scripts() {
wp_enqueue_script('flexslider', get_stylesheet_directory_uri().'/js/flexslider/jquery.flexslider.js', array('jquery'));
wp_enqueue_script('flexslider-init', get_stylesheet_directory_uri().'/js/flexslider/flexslider-init.js', array('jquery', 'flexslider'));
}
add_action('wp_enqueue_scripts', 'gn_add_scripts');

function gn_add_styles() {
wp_enqueue_style('flexslider', get_stylesheet_directory_uri().'/js/flexslider/flexslider.css');
}
add_action('wp_enqueue_scripts', 'gn_add_styles'); 

This is the portion of my header output in html:

<link rel='stylesheet' id='flexslider-css'  href='http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/flexslider/flexslider.css?ver=3.4.2' type='text/css' media='all' />
<script type='text/javascript' src='http://gnvls.kimil.kodingen.com/wpt2/wp-includes/js/jquery/jquery.js?ver=1.7.2'></script>
<script type='text/javascript' src='http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/jquery-ui-1.8.24.custom.min.js?ver=3.4.2'></script>
<script type='text/javascript' src='http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/css3-mediaqueries.js?ver=3.4.2'></script>
<script type='text/javascript' src='http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/gnav.js?ver=3.4.2'></script>
<script type='text/javascript' src='http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/flexslider/jquery.flexslider.js?ver=3.4.2'></script>
<script type='text/javascript' src='http://gnvls.kimil.kodingen.com/wpt2/wp-content/themes/gnvls-responsive/js/flexslider/flexslider-init.js?ver=3.4.2'></script>

Can someone help to understand what's happening? Thanks in advance.

share|improve this question
IE don't interpret the line where you call jquery. When I try to load the gnvls.kimil.kodingen.com/wpt2/wp-includes/js/jquery/… file in Firefox, I get an error about the file being bad encoded. – Simon Oct 20 '12 at 19:55
This is most likely the user not refreshing his browser, not including the right file or not flushing the kodingen cache, voting to close. – Wyck Oct 20 '12 at 19:59

closed as off topic by Wyck, brasofilo, toscho Oct 20 '12 at 23:20

Questions on WordPress Answers are expected to relate to WordPress within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.