<?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>Funcoder Technology Blog &#187; JQuery</title>
	<atom:link href="http://www.funcoder.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.funcoder.com</link>
	<description>A UK Based Developer, Living and Breathing Technology</description>
	<lastBuildDate>Thu, 12 Aug 2010 08:04:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using JQuery with WEBDEV 12</title>
		<link>http://www.funcoder.com/using-jquery-with-webdev-12/</link>
		<comments>http://www.funcoder.com/using-jquery-with-webdev-12/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 11:56:58 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[WinDev]]></category>
		<category><![CDATA[PC Soft]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/01/27/using-jquery-with-webdev-12/</guid>
		<description><![CDATA[The original point of creating my blog was to have fun with software development, but time has not been on my side. Today I decided it was time to have some fun, so I wanted to see if WEBDEV would allow me to integrate JQuery. The idea was to just create a simple page which [...]]]></description>
			<content:encoded><![CDATA[<p>The original point of creating my blog was to have fun with software development, but time has not been on my side.</p>
<p>Today I decided it was time to have some fun, so I wanted to see if WEBDEV would allow me to integrate JQuery.</p>
<p>The idea was to just create a simple page which I could call a JQuery scroll-up effect on some text. I wanted to do this with a Dynamic WEBDEV application as this is where I spend most of my web development time using.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/01/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/01/image-thumb3.png" width="472" height="276" /></a> </p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/01/image4.png"><img style="border-bottom: 0px; border-left: 0px; margin: 2px 5px 5px 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" align="left" src="http://www.funcoder.com/wp-content/uploads/2009/01/image-thumb4.png" width="278" height="301" /></a>I created a static control inside a cell. There’s some HTML DIV tags you need to set in the controls.</p>
<p>Firstly the cell description dialog you need to add the html in the advanced section. It’s only a couple of lines.</p>
<p> The DIV class name then can be referenced in the JQuery method.</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/01/image5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.funcoder.com/wp-content/uploads/2009/01/image-thumb5.png" width="206" height="240" /></a> </p>
<p>You also need to add a paragraph tag to the static control.</p>
</p>
</p>
</p>
<p>&#160;</p>
<p>&#160;</p>
<p>Then the final thing to do is add some JavaScript code to the button. If your code window is in WL language mode <a href="http://www.funcoder.com/wp-content/uploads/2009/01/image6.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/01/image-thumb6.png" width="93" height="38" /></a>&#160; then you need to click on the WL to change it to JavaScript <a href="http://www.funcoder.com/wp-content/uploads/2009/01/image7.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/01/image-thumb7.png" width="76" height="41" /></a> .</p>
<p>Now all you need to do is add your JQuery JavaScript code:</p>
<p>$(<font color="#800000">&quot;div.contentToChange p.firstparagraph:visible&quot;</font>).<font color="#008000">slideUp</font>(&quot;slow&quot;);</p>
<p>There is one final part to this code. We need to tell WEBDEV where the JQuery JavaScript library is. There are a few places you can do that, by downloading the library and telling the project where the JavaScript file is or for my simple experiment I have included the html to reference the JavaScript libraty from the Page Description dialog, as seen below:</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/01/image8.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/01/image-thumb8.png" width="471" height="413" /></a> </p>
<p>Now you can run the Web App page, click on the button and you will see the text scroll away.</p>
<p>If you have any more experience of question using JQuery with WEBDEV please post a comment so that others can learn.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/using-jquery-with-webdev-12/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
