<?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: Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery</link>
		<description>Gravity Support Forums Topic: Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 04:07:33 +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/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery#post-178740</link>
			<pubDate>Wed, 20 Mar 2013 23:16:05 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">178740@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Dasha, adm/adm did not work for me for the Apache basic auth.  Can you check that please?  I'd like to take a look.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dashaluna on "Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery#post-176964</link>
			<pubDate>Tue, 19 Mar 2013 13:27:32 +0000</pubDate>
			<dc:creator>dashaluna</dc:creator>
			<guid isPermaLink="false">176964@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;@richardvav thank you for letting me know. I've commended out my code with custom jquery completely. So all the scripts are now coming from WP.&#60;/p&#62;
&#60;p&#62;I'm still experiencing the problem that Enhanced User Interface fields still look very broken.&#60;/p&#62;
&#60;p&#62;The staging websites is at &#60;a href=&#34;http://gymtopia.dashaluna.com/add-story&#34; rel=&#34;nofollow&#34;&#62;http://gymtopia.dashaluna.com/add-story&#60;/a&#62;&#60;br /&#62;
htaccess login details (user/password): adm/adm&#60;/p&#62;
&#60;p&#62;I would hugely appreciate any help. I'm really stack and have no idea what I'm doing wrong :( All seems to be working fine in the admin preview of a form, but not on the front end.&#60;/p&#62;
&#60;p&#62;Many thanks, Dasha
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery#post-172416</link>
			<pubDate>Fri, 15 Mar 2013 11:54:41 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">172416@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You are including jQuery v1.9 from google, there have been a couple of issues reported with this version as it was a major re-write and they dropped a lot of features. Gravity forms generally supports the version of jQuery that ships with wordpress which is currently 1.8.3 so try changing your jQuery call to that version and see if it makes any difference.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dashaluna on "Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery#post-172328</link>
			<pubDate>Fri, 15 Mar 2013 10:13:26 +0000</pubDate>
			<dc:creator>dashaluna</dc:creator>
			<guid isPermaLink="false">172328@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello Chris,&#60;/p&#62;
&#60;p&#62;You're right! Apologies.. I've inspected the page source and the chosen.jquery.min.js script does indeed appear after jquery.&#60;/p&#62;
&#60;p&#62;I forgot to mention that I'm using latest jquery and jqueryui libraries. I load them in functions.php as following:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;wp_enqueue_scripts&#38;#39;, &#38;#39;dlfrw_enqueue_scripts&#38;#39;, 1 );
function dlfrw_enqueue_scripts() {

	// general jquery &#38;amp; other libraries include
	if( !is_admin() ){
		wp_deregister_script(&#38;#39;jquery&#38;#39;);
		wp_register_script(&#38;#39;jquery&#38;#39;, &#38;#39;//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&#38;#39;, false, &#38;#39;1.9.1&#38;#39;);
		wp_register_script(&#38;#39;jqueryui&#38;#39;, &#38;#39;//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js&#38;#39;, array(&#38;#39;jquery&#38;#39;), &#38;#39;1.10.0&#38;#39;);
		wp_enqueue_script(&#38;#39;jquery&#38;#39;);
		wp_enqueue_script(&#38;#39;jqueryui&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;There doesn't seem to be any JS errors, but it still looks very broken as per perviously provided screen shot. &#60;/p&#62;
&#60;p&#62;Any idea how it can be fixed?&#60;/p&#62;
&#60;p&#62;Many thanks, Dasha
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery#post-168441</link>
			<pubDate>Tue, 12 Mar 2013 01:27:03 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">168441@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Dasha, the scripts in that view are alphabetical; I don't think that is the order they're loaded in.  If you provide a link to the live site, we can take a look.  We load the chosen script with a dependency on jQuery, so in a normal WordPress (un-customized) site, it will load in the correct order.  If you're having trouble, please post a link to the site and let us know what is not working for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dashaluna on "Enhanced User Interface (chosen.jquery.min.js) appears/loads before jquery?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enhanced-user-interface-chosenjqueryminjs-appears-before-jquery#post-163376</link>
			<pubDate>Thu, 07 Mar 2013 13:44:10 +0000</pubDate>
			<dc:creator>dashaluna</dc:creator>
			<guid isPermaLink="false">163376@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I'm using Enhanced User Interface (chosen.jquery.min.js) in a form. However, when displaying the form all of the options appear under the select box. I've inspected the js files in Chrome and it looks like Chosen script loads before the jquery?&#60;/p&#62;
&#60;p&#62;I've switched to eleven twelve and turned off ALL the plugins, and turned on the Gravity Forms and that's what I am getting. &#60;a href=&#34;http://cl.ly/image/0I3s3r1H2v0l&#34; rel=&#34;nofollow&#34;&#62;Screenshot here&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;WP: 3.5.1.&#60;br /&#62;
GF: 1.6.12&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;br /&#62;
Thanks, Dasha
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
