<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>jQueryScriptManager Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Home</link><description>jQueryScriptManager Wiki Rss Description</description><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A simple way of registering JavaScript with jQuery and organising JavaScript
&lt;br /&gt; &lt;br /&gt;&lt;a href="http://jquery.com/" class="externalLink"&gt;What is jQuery?&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;pre&gt;
jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents,
handle events, perform animations, and add Ajax interactions to your web pages.
&lt;/pre&gt; &lt;br /&gt;For an overview of exactly what the jQuery Script Manager does - &lt;a href="http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Quick%20start%20guide&amp;amp;referringTitle=Home"&gt;Quick start guide&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Additional information will be avaliable on my &lt;a href="http://prodactor.blogspot.com" class="externalLink"&gt;Blog&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (When I update it).&lt;br /&gt;
&lt;/div&gt;</description><author>prodactor</author><pubDate>Tue, 29 May 2007 10:23:56 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070529102356A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A simple way of registering JavaScript with jQuery and organising JavaScript
&lt;br /&gt; &lt;br /&gt;&lt;a href="http://jquery.com/" class="externalLink"&gt;What is jQuery?&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;pre&gt;
jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages.
&lt;/pre&gt; &lt;br /&gt;For an overview of exactly what the jQuery Script Manager does - &lt;a href="http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Quick%20start%20guide&amp;amp;referringTitle=Home"&gt;Quick start guide&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Additional information will be avaliable on my &lt;a href="http://prodactor.blogspot.com" class="externalLink"&gt;Blog&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (When I update it).&lt;br /&gt;
&lt;/div&gt;</description><author>prodactor</author><pubDate>Tue, 29 May 2007 10:22:52 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070529102252A</guid></item><item><title>UPDATED WIKI: Quick start guide</title><link>http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Quick start guide&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
The jQuery Script Manager control has been designed to make using jQuery with ASP.Net simple and be a way to simply organise JavaScript.&lt;br /&gt; &lt;br /&gt;The current way to use the jQuery Script Manager is fairly straight forward.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;1) add the jQuery Script Manager to the page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;//Add control&lt;br /&gt;&lt;pre&gt;
&amp;lt;%@ Register Assembly=&amp;quot;jQuery.ScriptManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&amp;quot; Namespace=&amp;quot;jQuery.ScriptManager&amp;quot; TagPrefix=&amp;quot;jQuery&amp;quot; %&amp;gt;
 
...
 
&amp;lt;jQuery:jQueryManager id=&amp;quot;jQueryM&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
&amp;lt;/jQueryManager&amp;gt;
&lt;/pre&gt; &lt;br /&gt;&lt;b&gt;2) register any JavaScripts functions that need to run on document.load&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;//Add the name of the JavaScript function&lt;br /&gt;&lt;pre&gt;
&amp;lt;jQuery:jQueryManager id=&amp;quot;jQueryM&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
     &amp;lt;ReadyFunctions&amp;gt;
          &amp;lt;jQuery:RegisterReadyFunction FunctionName=&amp;quot;TestFunction&amp;quot; /&amp;gt;
     &amp;lt;/ReadyFunctions&amp;gt;
&amp;lt;/jQueryManager&amp;gt;
&lt;/pre&gt; &lt;br /&gt;//JavaScript code either in the page head or an external .js file (The correct way to do it!)&lt;br /&gt;&lt;pre&gt;
function TestFunction(){
     alert('The page has loaded!');
}
&lt;/pre&gt; &lt;br /&gt;The JavaScript function &amp;quot;TestFunction&amp;quot; will be called when the page loads by placing it in jQuery's $(document).ready function.&lt;br /&gt;
&lt;/div&gt;</description><author>prodactor</author><pubDate>Tue, 29 May 2007 10:19:39 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Quick start guide 20070529101939A</guid></item><item><title>UPDATED WIKI: Quick start guide</title><link>http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Quick start guide&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
the jQuery Script Manager control has been designed to make using jQuery with ASP.Net simple and be a way to simply organise JavaScript.&lt;br /&gt; &lt;br /&gt;The current way to use the jQuery Script Manager is fairly straight forward.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;1) add the jQuery Script Manager to the page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;//Add control&lt;br /&gt;&lt;pre&gt;
&amp;lt;%@ Register Assembly=&amp;quot;jQuery.ScriptManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&amp;quot; Namespace=&amp;quot;jQuery.ScriptManager&amp;quot; TagPrefix=&amp;quot;jQuery&amp;quot; %&amp;gt;
 
...
 
&amp;lt;jQuery:jQueryManager id=&amp;quot;jQueryM&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
&amp;lt;/jQueryManager&amp;gt;
&lt;/pre&gt; &lt;br /&gt;&lt;b&gt;2) register any JavaScripts functions that need to run on document.load&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;//Add the name of the JavaScript function&lt;br /&gt;&lt;pre&gt;
&amp;lt;jQuery:jQueryManager id=&amp;quot;jQueryM&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
     &amp;lt;ReadyFunctions&amp;gt;
          &amp;lt;jQuery:RegisterReadyFunction FunctionName=&amp;quot;TestFunction&amp;quot; /&amp;gt;
     &amp;lt;/ReadyFunctions&amp;gt;
&amp;lt;/jQueryManager&amp;gt;
&lt;/pre&gt; &lt;br /&gt;//JavaScript code either in the page head or an external .js file (The correct way to do it!)&lt;br /&gt;&lt;pre&gt;
function TestFunction(){
     alert('The page has loaded!');
}
&lt;/pre&gt; &lt;br /&gt;The JavaScript function &amp;quot;TestFunction&amp;quot; will be called when the page loads by placing it in jQuery's $(document).ready function.&lt;br /&gt;
&lt;/div&gt;</description><author>prodactor</author><pubDate>Tue, 29 May 2007 10:19:14 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Quick start guide 20070529101914A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A simple way of registering JavaScript with jQuery and organising JavaScript
&lt;br /&gt; &lt;br /&gt;&lt;a href="http://www.codeplex.com/jQueryScriptManager/Wiki/View.aspx?title=Quick%20start%20guide&amp;amp;referringTitle=Home"&gt;Quick start guide&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Additional information will be avaliable on my Blog - &lt;a href="http://prodactor.blogspot.com" class="externalLink"&gt;http://prodactor.blogspot.com&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>prodactor</author><pubDate>Tue, 29 May 2007 10:03:00 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070529100300A</guid></item></channel></rss>