<?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: Completely confused with scripts (date picker doesn&#039;t work)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/completely-confused-with-scripts-date-picker-doesnt-work</link>
		<description>Gravity Support Forums Topic: Completely confused with scripts (date picker doesn&#039;t work)</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 04:07:07 +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/completely-confused-with-scripts-date-picker-doesnt-work" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Completely confused with scripts (date picker doesn&#039;t work)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/completely-confused-with-scripts-date-picker-doesnt-work#post-179780</link>
			<pubDate>Thu, 21 Mar 2013 15:05:45 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">179780@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Dasha.  I thought I responded to this yesterday but I don't see the reply.  I can't get past the Apache basic auth with adm/adm.  Can you please try yourself and let me know what I am doing wrong?  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dashaluna on "Completely confused with scripts (date picker doesn&#039;t work)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/completely-confused-with-scripts-date-picker-doesnt-work#post-176970</link>
			<pubDate>Tue, 19 Mar 2013 13:36:38 +0000</pubDate>
			<dc:creator>dashaluna</dc:creator>
			<guid isPermaLink="false">176970@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;GF CSS in enabled. However, the datapicker doesn't have any styles still.&#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. 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;Also, is it possible to delete GF datapicker script in case when I'm adding the whole jqueryui library?&#60;/p&#62;
&#60;p&#62;Many thanks, Dasha
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Completely confused with scripts (date picker doesn&#039;t work)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/completely-confused-with-scripts-date-picker-doesnt-work#post-172422</link>
			<pubDate>Fri, 15 Mar 2013 11:59:05 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">172422@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;As I mentioned in your other post 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 "Completely confused with scripts (date picker doesn&#039;t work)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/completely-confused-with-scripts-date-picker-doesnt-work#post-172327</link>
			<pubDate>Fri, 15 Mar 2013 10:10:34 +0000</pubDate>
			<dc:creator>dashaluna</dc:creator>
			<guid isPermaLink="false">172327@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I got completely confused with scripts and how they load :( Currently, my date picker doesn't work.&#60;/p&#62;
&#60;p&#62;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;When I click on the date picker, I get the following JS error:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Uncaught TypeError: Cannot read property &#38;#39;msie&#38;#39; of undefined ui.datepicker.js:1532
$.extend._generateHTML ui.datepicker.js:1532
$.extend._updateDatepicker ui.datepicker.js:616
$.extend._showDatepicker ui.datepicker.js:582
(anonymous function) ui.datepicker.js:222
b.event.dispatch jquery.min.js:3
v.handle jquery.min.js:3&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I've noticed that this erros is coming from ui.datepicker.js v1.6 script that GF loads itself. I've tried to wp_deregister_script that script, but with no luck.&#60;br /&#62;
How can I fix it please?&#60;/p&#62;
&#60;p&#62;WP: 3.5.1&#60;br /&#62;
GF: 1.6.12
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
