<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Not working in I.E</title>
		<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie</link>
		<description>Gravity Support Forums Topic: Not working in I.E</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 19:33:27 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/not-working-in-ie" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342443</link>
			<pubDate>Mon, 24 Jun 2013 15:07:47 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">342443@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@richardvav Hey Richard, I just sent you an email at the email address associated with your Gravity Forms account if you could please take a look.  We'd love to talk to you.  Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342371</link>
			<pubDate>Mon, 24 Jun 2013 13:25:30 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">342371@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad to hear it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakbentley on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342368</link>
			<pubDate>Mon, 24 Jun 2013 13:24:08 +0000</pubDate>
			<dc:creator>zakbentley</dc:creator>
			<guid isPermaLink="false">342368@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;ok, from netrender that looks like its done it!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342367</link>
			<pubDate>Mon, 24 Jun 2013 13:21:07 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">342367@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Still not working in IE, in the footer you have the following script which is also out-of-date, you are running v2 while it looks like v3 is out &#60;a href=&#34;http://masonry.desandro.com/&#34; rel=&#34;nofollow&#34;&#62;http://masonry.desandro.com/&#60;/a&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;http://canopyaccess.co.uk/wp-content/themes/Photum/js/jquery.masonry.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script&#38;gt;
  $(function(){

    console.time(&#38;#39;masonry&#38;#39;);
    $(&#38;#39;#move&#38;#39;).masonry({
      itemSelector: &#38;#39;.item&#38;#39;,
      columnWidth: 30,
      isAnimated: true
    }).masonry().masonry();
    console.timeEnd(&#38;#39;masonry&#38;#39;);

  });
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Can you try commenting out lines 5 and 11 by placing // at the start of the lines.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakbentley on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342360</link>
			<pubDate>Mon, 24 Jun 2013 13:14:02 +0000</pubDate>
			<dc:creator>zakbentley</dc:creator>
			<guid isPermaLink="false">342360@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;cool cool, its back on chrome now, im on mac so not sure about IE, but im using netrenderer to check and on there its still not there.  &#60;/p&#62;
&#60;p&#62;Are you able to check?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342357</link>
			<pubDate>Mon, 24 Jun 2013 13:09:11 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">342357@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;jQuery isn't being loaded at all now which is why you are getting all those errors, can you edit the code in your header.php to this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_action(&#38;#39;wp_enqueue_scripts&#38;#39;, &#38;#39;loading_jquery&#38;#39;);
if ( is_singular() &#38;amp;&#38;amp; get_option( &#38;#39;thread_comments&#38;#39; ) )
wp_enqueue_script( &#38;#39;comment-reply&#38;#39; );
wp_enqueue_script( &#38;#39;jquery&#38;#39; );
wp_head();
?&#38;gt;
&#38;lt;script&#38;gt;var $ = jQuery.noConflict();&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and I presume the earlier code was from your functions.php, that can be changed to&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function loading_jquery() {
wp_enqueue_script( &#38;#39;jquery&#38;#39; );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or commented out if no other functions reference it
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakbentley on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342348</link>
			<pubDate>Mon, 24 Jun 2013 13:02:11 +0000</pubDate>
			<dc:creator>zakbentley</dc:creator>
			<guid isPermaLink="false">342348@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;im getting these errors in the consol - im not clued up on js at all, so i super appreciate your helping me out on this&#60;/p&#62;
&#60;p&#62;Failed to load resource: the server responded with a status of 404 (Not Found) &#60;a href=&#34;http://canopyaccess.co.uk/wp-content/themes/Photum/styles/default.css&#34; rel=&#34;nofollow&#34;&#62;http://canopyaccess.co.uk/wp-content/themes/Photum/styles/default.css&#60;/a&#62;&#60;br /&#62;
Uncaught ReferenceError: $ is not defined canopyaccess.co.uk/:67&#60;br /&#62;
3&#60;br /&#62;
Uncaught ReferenceError: jQuery is not defined canopyaccess.co.uk/:179&#60;br /&#62;
Uncaught ReferenceError: jQuery is not defined jquery.masonry.min.js:10&#60;br /&#62;
Uncaught ReferenceError: $ is not defined canopyaccess.co.uk/:199&#60;br /&#62;
chrome.tabs is not available: You do not have permission to access this API. Ensure that the required permission or manifest property is included in your manifest.json. binding:202&#60;br /&#62;
Uncaught TypeError: Cannot call method 'create' of undefined measureIt.js:120
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakbentley on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342343</link>
			<pubDate>Mon, 24 Jun 2013 12:57:59 +0000</pubDate>
			<dc:creator>zakbentley</dc:creator>
			<guid isPermaLink="false">342343@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;now its hiding in chrome too, was ok, but doesnt like it now?!&#60;br /&#62;
(&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
	add_action('wp_enqueue_scripts', 'loading_jquery');&#60;br /&#62;
	if ( is_singular() &#38;amp;&#38;amp; get_option( 'thread_comments' ) )&#60;br /&#62;
	wp_enqueue_script( 'comment-reply' );&#60;br /&#62;
	wp_deregister_script( 'jquery' );&#60;br /&#62;
    wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js');&#60;br /&#62;
    wp_enqueue_script( 'jquery' );&#60;br /&#62;
	wp_head();&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
)&#60;/p&#62;
&#60;p&#62;I just took out the line like before
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakbentley on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342338</link>
			<pubDate>Mon, 24 Jun 2013 12:52:08 +0000</pubDate>
			<dc:creator>zakbentley</dc:creator>
			<guid isPermaLink="false">342338@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;ah found it was also adding it in the header.php
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakbentley on "Not working in I.E"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-working-in-ie#post-342335</link>
			<pubDate>Mon, 24 Jun 2013 12:50:06 +0000</pubDate>
			<dc:creator>zakbentley</dc:creator>
			<guid isPermaLink="false">342335@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;ok how about now?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
