<?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>elearninglive.com &#187; HTML</title>
	<atom:link href="http://elearninglive.com/wordpress/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://elearninglive.com/wordpress</link>
	<description>Quality web solutions.</description>
	<lastBuildDate>Wed, 28 Jul 2010 18:38:03 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Resize Adobe Connect Content Window</title>
		<link>http://elearninglive.com/wordpress/2008/12/resize-adobe-connect-content-window/</link>
		<comments>http://elearninglive.com/wordpress/2008/12/resize-adobe-connect-content-window/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 14:31:07 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Adobe Connect]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://elearninglive.com/wordpress/?p=161</guid>
		<description><![CDATA[Trying to use Adobe Connect Training for something it wasn&#8217;t intended for is really a pain. Little things (that are big things) just drive me nuts about it. Anyways, here (mainly for me for future reference) is a script to force the content window to be fullsized. It goes in the BODY and not the [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to use Adobe Connect Training for something it wasn&#8217;t intended for is really a pain. Little things (that are big things) just drive me nuts about it. Anyways, here (mainly for me for future reference) is a script to force the content window to be fullsized. It goes in the BODY and not the HEAD (which, for some reason, wasn&#8217;t working as it would get ignored).</p>
<p>&lt;!&#8211; Fullsize the browser window (Adobe Connect makes it too small to start!) &#8211;&gt;<br />
&lt;script language=&#8221;Javascript1.1&#8243; type=&#8221;text/javascript&#8221;&gt;<br />
if (top.frames.length!=0)<br />
top.location=self.document.location;<br />
self.moveTo(0,0);<br />
self.resizeTo(screen.availWidth,screen.availHeight);<br />
self.focus();<br />
&lt;/script&gt;</p>
<p>If anyone reading this has had any success getting 3rd-party (ie, not packaged by Captivate or Adobe Presenter) AICC content to track properly in Adobe Connect Training, *please* email me a working sample as I&#8217;d love to see it work.</p>
]]></content:encoded>
			<wfw:commentRss>http://elearninglive.com/wordpress/2008/12/resize-adobe-connect-content-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Loading of External HTML file Using Jquery</title>
		<link>http://elearninglive.com/wordpress/2008/09/dynamic-loading-of-external-html-file-using-jquery/</link>
		<comments>http://elearninglive.com/wordpress/2008/09/dynamic-loading-of-external-html-file-using-jquery/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 01:29:09 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[loading]]></category>

		<guid isPermaLink="false">http://elearninglive.com/wordpress/?p=120</guid>
		<description><![CDATA[I&#8217;ve been playing around with the Jquery framework lately. I&#8217;m not a big JavaScript guy as my primary focus for the past few years now has been ActionScript/Flash/Flex. But I have to admit, Jquery (and I&#8217;m sure some of the other more robust JavaScript frameworks) is really nice.
Anyways, here&#8217;s how to load in an external [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with the Jquery framework lately. I&#8217;m not a big JavaScript guy as my primary focus for the past few years now has been ActionScript/Flash/Flex. But I have to admit, Jquery (and I&#8217;m sure some of the other more robust JavaScript frameworks) is really nice.</p>
<p>Anyways, here&#8217;s how to load in an external html file into a div:</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery-1.2.6.js&#8221;&gt;<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(document).ready(function(){<br />
$(function () {<br />
$(&#8221;#content&#8221;).load(&#8221;content.html&#8221;);<br />
});<br />
});<br />
&lt;/script&gt;</p>
<p>Here is the content.html file:</p>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt;Here is my text file!&lt;/h1&gt;<br />
&lt;p&gt;Here is the second line of it!&lt;/p&gt;<br />
&lt;p&gt;&lt;strong&gt;And the third!&lt;/strong&gt;&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><a title="Dynamic Load of HTML with Jquery" href="http://elearninglive.com/temp/jquery/test.html" target="_blank">View the result here.</a></p>
<p>Simple content management? Or is that an SEO no-no? I&#8217;m used to loading, parsing, and displaying XML via Flash. I&#8217;ll have to look into whether Jquery can do that too.</p>
]]></content:encoded>
			<wfw:commentRss>http://elearninglive.com/wordpress/2008/09/dynamic-loading-of-external-html-file-using-jquery/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
