
gversion
User
Jan 14, 2012, 1:33 PM
Post #3 of 6
(2139 views)
Shortcut
|
|
Re: [Jason] JavaScript framework
[In reply to]
|
Can't Post
|
|
Hi Jason, Thanks for your suggestion but unfortunately I am still struggling to get this working. Below is the <HEAD> section of my web page and I'd be grateful if you could take a look to see what might be causing the problem:
<?php // load favorites records list($_website_favoritesRecords, $_website_favoritesMetaData) = getRecords(array( 'tableName' => '_website_favorites', 'where' => "createdByUserNum= '".mysql_escape($CURRENT_USER['num'])."'" )); require_once("makeLinkFunctions.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <script type="text/javascript" src="/cmsAdmin/plugins/websiteFavorites/websiteFavorites.js"></script> <script type="text/javascript" src="/cmsAdmin/3rdParty/jquery/jquery1.3.2.js"></script> <script type="text/javascript">jQuery.noConflict();</script> <?php $GLOBALS['WSF_SCRIPTS_LOADED'] = true; ?> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Encoding" content="gzip" /> <meta http-equiv="Accept-Encoding" content="gzip, deflate" /> <?php if (@$specificTitle) : ?> <?php echo $specificTitle; ?> <?php else : ?> <title>Product Listing</title> <?php endif ?> <link rel="stylesheet" type="text/css" href="/css/all_new.css" /> <script type="text/javascript" src="/js/jquery.1.6.1.js"></script> <script type="text/javascript" src="/js-old/jquery.main.js"></script> <!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="/css/ie_new.css" /><![endif]--> <link rel="stylesheet" href="/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" /> <link href='http://fonts.googleapis.com/css?family=Lato:400,700,300italic' rel='stylesheet' type='text/css'> <script type="text/javascript" src="/fancybox/jquery.fancybox-1.3.4.pack.js"></script> <script type="text/javascript" src="/fancybox/jquery.fancybox-1.3.4.js"></script> <script type="text/javascript" src="/fancybox/jquery.easing-1.3.pack.js"></script> <link rel="stylesheet" type="text/css" href="/css/jquery.smartsuggest.css" /> <script type="text/javascript" src="/js/jquery.smartsuggest.CUSTOM.js"></script> <script type="text/javascript"> jQuery(document).ready(function() { jQuery("#fbox1").fancybox({ 'width' : '40%', 'height' : '60%', 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe' }); jQuery(".open-popup").fancybox(); jQuery(".goToItem").click(function(){ var itemNumber = jQuery(this).attr("id"); location.href = "listingDetail.php?"+itemNumber+"-"+itemNumber; }); }); </script> <!--For search box autofill--> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#keyword').smartSuggest({ src: '/_jsonoutput.php', fillbox: true, fillBoxWith: 'primary', executeCode: true, showImages: false, timeoutLength: '1', minChars:'1' }) }); </script> <!-- Start of Zopim Live Chat Script --> <script type="text/javascript"> window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$= z.s=d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o ){z.set._.push(o)};$.setAttribute('charset','utf-8');$.async=!0;z.set. _=[];$.src=('https:'==d.location.protocol?'https://ssl':'http://cdn')+ '.zopim.com/?3zHAowP0fTdznpBp2jRUVHEhBXaJprXc';$.type='text/java'+s;z. t=+new Date;z._=[];e.parentNode.insertBefore($,e)})(document,'script') </script> <!-- End of Zopim Live Chat Script --> </head> Thanks again for your help. It would be great to get this working! Regards, Greg
|