<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : JQuery &amp; ProductCart</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Customizing ProductCart : JQuery &amp; ProductCart]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 13 Apr 2026 15:40:07 +0000</pubDate>
  <lastBuildDate>Fri, 10 Jul 2009 08:04:13 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=2855</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : Hi,  Another very good reason...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10600.html#10600</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=303">Hamish</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 10-July-2009 at 8:04am<br /><br />Hi,<DIV>&nbsp;&nbsp; Another very good reason to move code onto your own server (if possible) is that your page would no longer be reliant on the availability and respnse times from third party servers, which IMHO, should be minimised where possible. </DIV><DIV>Using content&nbsp;from third party servers can increase the downtime of your site if the pages are dependent upon it. For example, if you have content from your own server and two others, each with&nbsp;99.5% availability then your sites availability drops to 98.5% as the downtime of the 3rd party servers are very unlikely to coincide with your own.</DIV>]]>
   </description>
   <pubDate>Fri, 10 Jul 2009 08:04:13 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10600.html#10600</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : HI Mike,JQuery is all the rage...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10598.html#10598</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 10-July-2009 at 12:54am<br /><br />HI Mike,<br><br>JQuery is all the rage now -- rather like FLASH was back in it's heyday. There certainly can be many excellent uses for it, but I recommend being judicious about how/why one uses it.<br><br>Looking as your script below, the obvious issue is the HTTP calls; however, you can't just simply change them to "https:// . . ." as you don't necessarily know if those are valid -- hitting them this way will likely throw security alerts when are hanging up your application's ability to access these services. That is, you first need to find out if these three locations have HTTPS URLs available and what they are.<br><br><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by mikey234d" alt="Originally posted by mikey234d" style="vertical-align: text-bottom;" /> <strong>mikey234d wrote:</strong><br /><br />Hamish,<br><br>&lt;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;<br>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" &gt;&lt;/script&gt;<br>&lt;script type="text/javascript"&gt;<br>&nbsp;&nbsp;&nbsp; $(document).ready(function(){<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $("#featured &gt; ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000, true);<br>&nbsp;&nbsp;&nbsp; });<br>&lt;/script&gt;&lt;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&gt;<br><br></td></tr></table><br><br>As Greg suggests, you should probably be able to import these script into directories on your own site, and then assuming you have a dedi SSL certificate, you should have no more worries.<br>]]>
   </description>
   <pubDate>Fri, 10 Jul 2009 00:54:33 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10598.html#10598</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : I don&amp;#039;t believe what you...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10593.html#10593</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=290">Greg Dinger</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 09-July-2009 at 6:06pm<br /><br />I don't believe what you are trying to do here is going to be successful.<br><br>I'm not going to dig into your page to see why you want all of this code but I recommend that all of that JS code be transferred over to your site and referenced locally.&nbsp; Perhaps you will explain what it's all there for, in which case I may propose a different solution, but here is the issue as I see it:<br><br>As Hamish has indicated, any object -&nbsp; be that an image, a CSS file, or a JS file - must be referenced in the same context as the page itself when you are in SSL.&nbsp; So if you want to reference an off-site object in SSL, there needs to be an SSL path for the other site.<br><br>There are various strategies including some code which looks at the current URL to determine if it contains HTTPS or not, and references objects accordingly.&nbsp; But simply changing the JS references above to HTTPS will only work if there is an SSL path on those sites that points to such content.&nbsp; <br><br>Since your page is hanging probably means that the path does not exist and your page is waiting for a response from the other server that isn't coming.<br><br>If you move copies to your server, then you can reference those objects relative to your PC folder and resolve this.&nbsp; But unless "code.jquery.com" and "ajax.googleapis.com" have SSL certificates, you cannot simply reference them as HTTPS and expect it to work.<br><br>If the thread to date (and my post in particular) makes you roll your eyes wondering what all of this means, I suggest you hire a developer for a bit of time to dig through this with you.&nbsp; It's not that complicated but it may be over your head, and possibly well worth the small expense to get it resolved so you can move on with your new store.<br>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 18:06:35 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10593.html#10593</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart :  Hamish,I changed the http to...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10592.html#10592</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1616">mikey234d</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 09-July-2009 at 5:15pm<br /><br />Hamish,<br><br>I changed the http to https in the javascript. But when I did that and refreshed the page, the browser was trying to find the link but just kept timing out.&nbsp; And i dont see anywhere else that I would change the http to a https.&nbsp; Below runs the slider on the home page.<br><br>&lt;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;<br>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" &gt;&lt;/script&gt;<br>&lt;script type="text/javascript"&gt;<br>&nbsp;&nbsp;&nbsp; $(document).ready(function(){<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $("#featured &gt; ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000, true);<br>&nbsp;&nbsp;&nbsp; });<br>&lt;/script&gt;&lt;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&gt;<br><br>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 17:15:52 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10592.html#10592</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : Yes - https: :-)   View the...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10591.html#10591</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=303">Hamish</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 09-July-2009 at 4:30pm<br /><br />Yes - https:&nbsp;&nbsp; :-) <DIV>&nbsp;</DIV><DIV>View the source code on your page and look for any references <FONT color=#3300cc>to http</FONT> that are not links (which I don't believe are effected), there are quite a few, then check your header and footer files and switch them to https. Things like the javascripts etc.</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#330066>Edited&nbsp; </FONT></DIV><span style="font-size:10px"><br /><br />Edited by Hamish - 09-July-2009 at 4:32pm</span>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 16:30:56 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10591.html#10591</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : Hamish,Yes the warnings are about...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10589.html#10589</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1616">mikey234d</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 09-July-2009 at 3:45pm<br /><br />Hamish,<br><br>Yes the warnings are about non-secure content in a secure page.&nbsp; How do you include Https in http?&nbsp; Is there some type of code that I should be inserting? <br>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 15:45:45 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10589.html#10589</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : Hi Mike,  Are these warnings...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10587.html#10587</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=303">Hamish</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 09-July-2009 at 3:05pm<br /><br />Hi Mike,<DIV>&nbsp;&nbsp; Are these warnings about non-secure content in a secure page?&nbsp; </DIV><DIV>If this is the case then the simplest&nbsp;solution&nbsp;is to make sure anything being included&nbsp;from your code (header / footer) is the HTTPS version.&nbsp;</DIV><DIV>IE8 is fine with HTTPS being included in an HTTP page, but not vica-versa.</DIV>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 15:05:49 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10587.html#10587</guid>
  </item> 
  <item>
   <title><![CDATA[JQuery &amp; ProductCart : I have implemented a couple of...]]></title>
   <link>https://forum.productcart.com/jquery-productcart_topic2855_post10576.html#10576</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1616">mikey234d</a><br /><strong>Subject:</strong> 2855<br /><strong>Posted:</strong> 09-July-2009 at 1:20pm<br /><br />I have implemented a couple of<span id="ToolBar2"><img src="forum_images/post_butt&#111;n_underline.gif" border="0" /></span> JQuery applications on my ProductCart website.&nbsp; I made both the top menu and the side navigation menu in JQuery. I also have a sliding "Featured Content" box in JQuery as well.&nbsp; Everything seems to be working great until after someone logs into their account. Im getting security warnings in Internet Explorer version 8. I do not have any problems in Firefox, only Internet Explorer.&nbsp; Also the menus stop working and the slider stops moving.&nbsp; So everything works fine when it it "<a href="http://www.shopatdean.com" target="_blank">http://www.shopatdean.com</a>" but when it becomes "<a href="http://https://www.shopatdean.com/store/pc/home.asp" target="_blank">https://www.shopatdean.com</a>" I am having all sorts of problems.&nbsp; Is there something I am missing.&nbsp; Thanks in advance for any answers.<br><br><br>Mike<br>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 13:20:43 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/jquery-productcart_topic2855_post10576.html#10576</guid>
  </item> 
 </channel>
</rss>