<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Josh Krajnak</title>
	<atom:link href="http://www.joshkrajnak.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.joshkrajnak.com</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 18:32:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Sage X3 Debugging by Exporting Data</title>
		<link>http://www.joshkrajnak.com/?p=2029</link>
		<comments>http://www.joshkrajnak.com/?p=2029#comments</comments>
		<pubDate>Thu, 06 Jun 2013 13:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Developing]]></category>
		<category><![CDATA[Sage X3]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[SAGE]]></category>
		<category><![CDATA[SAGE ERP]]></category>
		<category><![CDATA[SAGE ERP X3]]></category>
		<category><![CDATA[SAGE X3]]></category>
		<category><![CDATA[X3]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=2029</guid>
		<description><![CDATA[While using Sage X3, there are times when I&#8217;ve come across an issue involving large amounts of data and strange errors. X3 will usually give a quick error message and give you the line of code where it failed. If it&#8217;s not the code, the next logical step would be to check the data. Rather&#8230; <a href="http://www.joshkrajnak.com/?p=2029">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=2029</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery disable button after clicking</title>
		<link>http://www.joshkrajnak.com/?p=2011</link>
		<comments>http://www.joshkrajnak.com/?p=2011#comments</comments>
		<pubDate>Wed, 05 Jun 2013 13:27:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Developing]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=2011</guid>
		<description><![CDATA[Recently came across an issue where a user had poor internet connectivity and tried to submit data. The user panicked, and clicked the submit button 34 times. That&#8217;s not a typo, the user clicked the submit button 34 times and 34 email blasts went out. Shame on me. So let&#8217;s remedy this situation using jQuery.&#8230; <a href="http://www.joshkrajnak.com/?p=2011">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=2011</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery showing the selected value</title>
		<link>http://www.joshkrajnak.com/?p=1982</link>
		<comments>http://www.joshkrajnak.com/?p=1982#comments</comments>
		<pubDate>Sun, 21 Apr 2013 00:17:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Developing]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[select]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1982</guid>
		<description><![CDATA[Continuing from the last example, I&#8217;m going to show how to display the value selected from a Select tag. &#60;html&#62; &#60;head&#62; &#60;script src=&#34;http://code.jquery.com/jquery-latest.js&#34;&#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;select id=&#34;fruit&#34;&#62; &#60;option&#62;Apples&#60;/option&#62; &#60;option&#62;Oranges&#60;/option&#62; &#60;/select&#62; &#60;p id=&#34;selectedFruit&#34;&#62;&#60;/p&#62; &#60;script&#62; $(&#34;#fruit&#34;).on(&#039;change&#039;, function() { $(&#34;#selectedFruit&#34;).html($(&#34;select option:selected&#34;).text()); }); &#60;/script&#62; &#60;/body&#62; &#60;/html&#62; For this example, I added a paragraph tag and gave it an id&#8230; <a href="http://www.joshkrajnak.com/?p=1982">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1982</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery adding values to select</title>
		<link>http://www.joshkrajnak.com/?p=1969</link>
		<comments>http://www.joshkrajnak.com/?p=1969#comments</comments>
		<pubDate>Sat, 20 Apr 2013 23:42:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1969</guid>
		<description><![CDATA[A reader posted a comment a few days ago on my jQuery Select Tutorial, stating that I could explore so much more: How about adding values, showing the selected value when option selected, adding [select] as the first option and resetting the list after each option is picked. &#8230;so I&#8217;m going to go through each&#8230; <a href="http://www.joshkrajnak.com/?p=1969">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1969</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xcode Test Internet Connection</title>
		<link>http://www.joshkrajnak.com/?p=1943</link>
		<comments>http://www.joshkrajnak.com/?p=1943#comments</comments>
		<pubDate>Tue, 02 Apr 2013 16:29:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1943</guid>
		<description><![CDATA[One of my apps require an internet connection to submit data. There is no way around this, end of story. With that being said, I needed to detect if the user&#8217;s iPad or iPhone is offline and alert them that the app will not function correctly. This is fairly simple due to Apple giving us&#8230; <a href="http://www.joshkrajnak.com/?p=1943">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1943</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flatten Rows in SQL</title>
		<link>http://www.joshkrajnak.com/?p=1939</link>
		<comments>http://www.joshkrajnak.com/?p=1939#comments</comments>
		<pubDate>Tue, 02 Apr 2013 15:50:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1939</guid>
		<description><![CDATA[I was doing some database work the other day and needed to show &#8220;One:Many&#8221; data in a single row. For example: If you need to display an individual&#8217;s full name in one column and their family members in another, where each name would be separated by a comma. To visualize it: What we currently have:&#8230; <a href="http://www.joshkrajnak.com/?p=1939">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1939</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Aux Input to the Center Console</title>
		<link>http://www.joshkrajnak.com/?p=1920</link>
		<comments>http://www.joshkrajnak.com/?p=1920#comments</comments>
		<pubDate>Tue, 19 Mar 2013 18:22:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Volkswagen]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1920</guid>
		<description><![CDATA[I still have the car that I drove throughout college and I continue to work on it and take it apart on a regular basis. It&#8217;s not pretty, but I love it. I&#8217;d like to plug in my phone or an iPod so that I can listen to music while driving, and I&#8217;d prefer to&#8230; <a href="http://www.joshkrajnak.com/?p=1920">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1920</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootstrap Nested Tables</title>
		<link>http://www.joshkrajnak.com/?p=1906</link>
		<comments>http://www.joshkrajnak.com/?p=1906#comments</comments>
		<pubDate>Thu, 14 Mar 2013 17:41:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bootstrap]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1906</guid>
		<description><![CDATA[Bootstrap has been growing in popularity due to how nice it looks and how easy it is to use. While it supports tables, it doesn&#8217;t have a native way to have nested rows. It does, however, have accordions that can be used in conjunction with tables to get the effect we are looking for. I&#8217;ve&#8230; <a href="http://www.joshkrajnak.com/?p=1906">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1906</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CFSet tags in ColdFusion 8 vs 10</title>
		<link>http://www.joshkrajnak.com/?p=1884</link>
		<comments>http://www.joshkrajnak.com/?p=1884#comments</comments>
		<pubDate>Wed, 13 Mar 2013 16:59:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1884</guid>
		<description><![CDATA[A few weeks ago I sat down with Dan Vega and went over an application that I was working on. The Dev server ran ColdFusion 10 and Production ran ColdFusion 8. Long story short, Dan pointed out that a lot changed between ColdFusion 8 and 10, one of those changes involved how cfset tags were&#8230; <a href="http://www.joshkrajnak.com/?p=1884">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1884</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Select Tutorial</title>
		<link>http://www.joshkrajnak.com/?p=1839</link>
		<comments>http://www.joshkrajnak.com/?p=1839#comments</comments>
		<pubDate>Thu, 07 Mar 2013 16:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joshkrajnak.com/?p=1839</guid>
		<description><![CDATA[Over the past few years I&#8217;ve had the opportunity to use several programming languages, libraries, frameworks, etc. and the one that I&#8217;ve been using a lot more often is jQuery. It&#8217;s essential if you are developing in ColdFusion due to how much it simplifies coding. In this post, I&#8217;m going to walk through using jQuery&#8230; <a href="http://www.joshkrajnak.com/?p=1839">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.joshkrajnak.com/?feed=rss2&#038;p=1839</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->