<?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>Devin Lee &#187; ipad simulator</title>
	<atom:link href="http://devin-lee.com/tag/ipad-simulator/feed" rel="self" type="application/rss+xml" />
	<link>http://devin-lee.com</link>
	<description>Web Tutorial and Inspiration</description>
	<lastBuildDate>Tue, 23 Apr 2013 02:43:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<atom:link rel='hub' href='http://devin-lee.com/?pushpress=hub'/>
		<item>
		<title>Ipad simulator for Windows</title>
		<link>http://devin-lee.com/ipad-simulator-for-windows</link>
		<comments>http://devin-lee.com/ipad-simulator-for-windows#comments</comments>
		<pubDate>Fri, 20 Apr 2012 01:51:21 +0000</pubDate>
		<dc:creator>Devin Lee</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[ipad simulator]]></category>
		<category><![CDATA[ipad simulator for windows]]></category>
		<category><![CDATA[mobile development]]></category>

		<guid isPermaLink="false">http://devin-lee.com/?p=232</guid>
		<description><![CDATA[I've been trying to develop Mobile web lately either Iphone or Ipad. And i found out that iphone website development is easy since you just need to re size the screen in Safari is you want get a quick preview what its looks like on Iphone. I search through and a bit stuck for testing [...]]]></description>
				<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdevin-lee.com%2Fipad-simulator-for-windows&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://devin-lee.com/ipad-simulator-for-windows"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://devin-lee.com/ipad-simulator-for-windows"  data-text="Ipad simulator for Windows" data-count="horizontal" data-via="d3vinl33"></a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://devin-lee.com/ipad-simulator-for-windows" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://devin-lee.com/ipad-simulator-for-windows"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>I've been trying to develop Mobile web lately either Iphone or Ipad. And i found out that iphone website development is easy since you just need to re size the screen in Safari is you want get a quick preview what its looks like on Iphone.<br />
I search through and a bit stuck for testing Ipad website design since i don't have the Ipad.</p>
<p>Here is my solution for someone <em>don't have an ipad</em>, <em>working on windows</em> and want an<em> Ipad simulator for windows</em>.<br />
First download the <a href="https://github.com/prusnak/ipadpeek" title="ipadpeek" target="_blank">source code</a> from <a href="http://ipadpeek.com/" title="ipadpeek.com" target="_blank">http://ipadpeek.com/</a> which i found that it's work great.<br />
Extract all ZIP file, and open the <strong>script.js</strong></p>
<div class="clear"></div>
<p>Change the First file below</p>
<pre class="wp-code-highlight prettyprint linenums:1">
var setFrameUrl = function(url) {
  if (!url || url == 'undefined') return;
  if (!url.match('^https?://')) {
    url = 'http://' + url;
  }
  $('#url').val(url);
  $('#frame').attr('src',url);
};
</pre>
<p>into</p>
<pre class="wp-code-highlight prettyprint linenums:1">
var setFrameUrl = function(url) {
  if (!url || url == 'undefined') return;
  if (!url.match('^https?://')) {
    url = '' + url; //delete the front to make it work on local
  }
  $('#url').val(url);
  $('#frame').attr('src',url);
};
</pre>
<p>Basicly just <strong>remove the http://</strong> to make it work on local.</p>
<p>now you can simply paste your local URL for example</p>
<pre class="wp-code-highlight prettyprint linenums:1">file:///C:/Users/yourname/Desktop/mywebdevelopment/index.html</pre>
<p>into the index.html of the ipadpeek</p>
<p>or if you work on localhost you can do the same thing.</p>
<p>And i found another that works just the same from <a href="http://electricplum.com/">electric plum</a>.<br />
here's the download link <a href="http://code.google.com/p/ibbdemo2/downloads/detail?name=iBBDemo2.air&#038;can=4&#038;q=">http://code.google.com/p/ibbdemo2/downloads/detail?name=iBBDemo2.air&#038;can=4&#038;q=</a><br />
This one is a simulator of both iphone and ipad, and can work on local as well.</p>
<p>Hope it will help.</p>
]]></content:encoded>
			<wfw:commentRss>http://devin-lee.com/ipad-simulator-for-windows/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

 Served from: devin-lee.com @ 2013-05-24 09:44:35 by W3 Total Cache -->