It seem My AJAX not work
I've put the wp_head() and wp_footer() also
and check at firebug but no error
also have check at w3c validator
here my header code :
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link href='<?php bloginfo('stylesheet_directory') ?>/reset.css' rel='stylesheet' media="all" type="text/css" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_directory' ); ?>/style.css" />
<!-- <link href='<?php bloginfo('stylesheet_directory') ?>/style.css' rel='stylesheet' type="text/css" /> -->
<link rel="stylesheet" media="all" href="<?php bloginfo('stylesheet_directory') ?>/stylesheet.css" type="text/css">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory') ?>/js/hoverIntent.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory') ?>/js/jquery.tools.min.js"></script>
<script type="text/javascript">
jQuery().ready(function() {
// initialize scrollable together with the navigator plugin
jQuery("#browsable").scrollable({circular: true}).navigator().autoscroll();
});
</script>
<style type="text/css" media="screen">
#wpadminbar{
display: none !important;
}
html{
margin-top: 0 !important;
}
</style>
</head>
footer code
</div><!-- Footer -->
</div> <!-- end of container -->
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>
any wrong here???
i tried all issue but not fix at all
thank you