Look at your source code: the link to that javascript is missing a closing >
I see this in my source code:
<script type="text/javascript">jQuery('div#about-cycle-lite').jj_ngg_shuffle();jQuery('div#about-cycle-lite').jjcycle({timeout:4000,height:272});</script>
Is there something wrong with that or is that not what you were talking about?
Try noconflict mode for that script http://api.jquery.com/jQuery.noConflict/ and try deactivating Zero Clipboard.
It’s actually a plug-in that has the javascript and I’m using php to call all that. Where would I put the noconflict?
This is from header.php:
<?php echo do_shortcode('[jj-ngg-jquery-cycle html_id="about-cycle-lite" width="1000" height="272" order="random" timeout="7000" shuffle="true" timeout="4000" gallery="1"]'); ?>
Any chance the problem has to do with something in the plugin’s functions.php file?
Here are two pieces that might be related to this problem:
function WPJJNGGJ_CYCLE_enqueue_scripts()
{
if( !is_admin() )
{
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'jquery-jjcucle', WPJJNGGJ_CYCLE_plugin_url( 'script/jquery.cycle.lite.1.0.min.js' ), array('jquery'), '', false );
wp_enqueue_script( 'jquery-shuffle', WPJJNGGJ_CYCLE_plugin_url( 'script/jquery.jj_ngg_shuffle.js' ), array('jquery'), '', false );
}
}
and
function jj_ngg_jquery_cycle_shortcode_handler($atts)
{
$instance = array();
foreach($atts as $att => $val)
{
$instance[wp_specialchars($att)] = wp_specialchars($val);
}