<?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>JavaScript - identity design</title>
	<atom:link href="https://blog.identitydesign.us/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/tag/javascript/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Fri, 09 Sep 2016 00:32:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>JavaScript - identity design</title>
	<link>https://blog.identitydesign.us/tag/javascript/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Make Clickable Link with JavaScript instead of HTML Anchor</title>
		<link>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/</link>
					<comments>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 23 Aug 2016 00:08:29 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=871</guid>

					<description><![CDATA[<p>Sometimes you just can&#8217;t edit the HTML but still need to make the div clickable. Here&#8217;s how with using JavaScript. *Jquery needs to be installed. &#60;script&#62;  $('.YOUR-CLASS-NAME').each(function() { var link = $(this).html(); $(this).contents().wrap('&#60;a href="YOUR-URL-LINK"&#62;&#60;/a&#62;'); }); &#60;/script&#62; You need to replace .YOUR-CLASS-NAME with your div&#8217;s class and replace "YOUR-URL-LINK" with your destination link. Pretty simple, heh?</p>
<p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes you just can&#8217;t edit the HTML but still need to make the <code>div</code> clickable. Here&#8217;s how with using JavaScript. *Jquery needs to be installed.</p>
<pre>&lt;script&gt; 
$('.YOUR-CLASS-NAME').each(function() {
var link = $(this).html();
$(this).contents().wrap('&lt;a href="YOUR-URL-LINK"&gt;&lt;/a&gt;');
});
&lt;/script&gt;</pre>
<p>You need to replace <code>.YOUR-CLASS-NAME</code> with your div&#8217;s class and replace <code>"YOUR-URL-LINK"</code> with your destination link. Pretty simple, heh?</p><p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Simple JavaScript Redirect Code for HTML</title>
		<link>https://blog.identitydesign.us/simple-javascript-redirect-code/</link>
					<comments>https://blog.identitydesign.us/simple-javascript-redirect-code/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 03 Mar 2016 09:24:58 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=805</guid>

					<description><![CDATA[<p>Here&#8217;s the one of the simplest ways to redirect your site&#8217;s traffic. Redirect to Different URL Copy the code below and paste it to your blank html. &#60;script language=&#34;javascript&#34;&#62; window.location.href=&#34;http://YOUR-REDIRECT-PAGE&#34; &#60;/script&#62; Download Sample *Replace YOUR-REDIRECT-PAGE with your new URL.</p>
<p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for HTML</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for HTML</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/" rel="bookmark" title="Download: Simple Parallax Smooth Scrolling Website Template">Download: Simple Parallax Smooth Scrolling Website Template</a></li>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s the one of the simplest ways to redirect your site&#8217;s traffic. </p>
<h2>Redirect to Different URL</h2>
<p>Copy the code below and paste it to your blank html.</p>
<pre>
&lt;script language=&quot;javascript&quot;&gt;
window.location.href=&quot;http://YOUR-REDIRECT-PAGE&quot;
&lt;/script&gt;
</pre>

<div class="clear"></div>
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Code', 'Redirect', 'https://blog.identitydesign.us/wp-content/uploads/2016/03/redirect.html.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2016/03/redirect.html.zip">Download Sample</a></div>
<p>*Replace <code>YOUR-REDIRECT-PAGE</code> with your new URL.</p><p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for HTML</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for HTML</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/" rel="bookmark" title="Download: Simple Parallax Smooth Scrolling Website Template">Download: Simple Parallax Smooth Scrolling Website Template</a></li>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/simple-javascript-redirect-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive Google Adsense is Easy!</title>
		<link>https://blog.identitydesign.us/responsive-google-adsense/</link>
					<comments>https://blog.identitydesign.us/responsive-google-adsense/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 24 Sep 2014 21:42:51 +0000</pubDate>
				<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Responsive]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=584</guid>

					<description><![CDATA[<p>We are facing a big transition in web design. In recent days, majority of well developed websites are made in responsive websites. Responsive design is the development responding to the environment based on screen size of a device. That being said the content elements must evolve to meet the technology as millions of bloggers are [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>We are facing a big transition in web design. In recent days, majority of well developed websites are made in responsive websites. Responsive design is the development responding to the environment based on screen size of a device. That being said the content elements must evolve to meet the technology as millions of bloggers are using Google Adsense technology to monetize their content.</p>
<p>Below is the HOW-TO guide to tweak the current Google Adsense code with the new responsive Google Adsense banners on your site. You don&#8217;t need to have a deep understanding of it&#8217;s frame work. Here&#8217;s an easy way to make it happen.</p>
<p>Our DEMO is here. Just look at the header section of this site. Do you see a wide horizontal banner (728 px x 90 px)? Try resize the browser to make it smaller and reload the page. Try even smaller like you are using a mobile and reload the page. Do you see the size of the ad is changing as it&#8217;s responding?</p>
<p>Let&#8217;s first take a look at your current Google Adsense Code below. You can get this code from <a href="https://www.google.com/adsense/" target="_blank">Google Adsense Site</a> &rarr; My ads (top menu) &rarr; &#8220;Get Code&#8221; from one of your ad unit.</p>
<p>Make sure you select &#8220;asynchronous&#8221; code type from the drop down menu.</p>
<pre>&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
&lt;!-- NAME OF YOUR AD --&gt;
&lt;ins class="adsbygoogle"
     style="display:inline-block;width:728px;height:90px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="1054112722"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;</pre>
<p>1. You simply add a <code>&lt;div&gt;</code> around it.<br />
2. Named the class to <code>responsive-ad</code> on the <code>&lt;div&gt;</code><br />
3. Added the class <code>responsive-ad</code> to <code>&lt;ins&gt;</code>. So it&#8217;s now <code>adsbygoogle responsive-ad</code>.<br />
4. Changed the style to <code>display:block</code><br />
5. You must replace <code>data-ad-client</code> numbers and <code>data-ad-slot</code> numbers with yours..<br />
6. Added <code>data-format="auto"</code> before closing <code>&lt;/ins&gt;</code> tag.<br />
7. Add <code>&lt;style&gt;</code> tags. You can tweak it whatever you want.</p>

<div class="clear"></div>
<pre>&lt;div class="responsive-ad"&gt;	
&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
&lt;!-- NAME OF YOUR AD --&gt;
&lt;ins class="adsbygoogle responsive-ad"
     style="display:block"
     data-ad-client="ca-pub-XXXXXXXXXXXXXXXX"
     data-ad-slot="XXXXXXXXXX"
     data-format="auto"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/div&gt;

&lt;style type="text/css"&gt;
.responsive-ad { width: 320px; height: 50px; margin: 0 auto; }
@media (min-width:480px) { .responsive-ad { width: 468px; height: 60px; } }
@media (min-width:768px) { .responsive-ad { width: 728px; height: 90px; } }
&lt;/style&gt;</pre>
<p>The <code>&lt;style&gt;</code> above has set a minimum of 768px (and up) for desktops, a minimum of 480px (and up but below 768px) for tablet, and 320px (and up but below 480px) for mobile. You may feel free to change the numbers of <code>min-width:</code> as your site structure.</p>
<p>Enjoy your blogging and monetizing with the new Responsive Google Adsense!</p><p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/responsive-google-adsense/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Download: Simple Parallax Smooth Scrolling Website Template</title>
		<link>https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/</link>
					<comments>https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 04 Sep 2014 23:01:36 +0000</pubDate>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[parallax]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=420</guid>

					<description><![CDATA[<p>With new technologies of HTML5, CSS3 and JavaScript, parallax scrolling is one of the hottest trends in web design industry. Floating with different speed of scrolling background elements could make a website stronger in storytelling. It&#8217;s easy to find parallax resources online, but it&#8217;s hard to find a function with smooth scrolling effect. Here&#8217;s the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/free-splatter-art-poster/" rel="bookmark" title="Freebies: Paint Splatter High-Res Art Poster Template">Freebies: Paint Splatter High-Res Art Poster Template</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>With new technologies of HTML5, CSS3 and JavaScript, parallax scrolling is one of the hottest trends in web design industry. Floating with different speed of scrolling background elements could make a website stronger in storytelling. It&#8217;s easy to find parallax resources online, but it&#8217;s hard to find a function with smooth scrolling effect.</p>
<p><a href="https://blog.identitydesign.us/parallax-smooth-scrolling-website/" target="_blank"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-465" alt="parallax-smooth-scrolling" src="https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling.png" width="1446" height="1185" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling.png 1446w, https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-300x245.png 300w, https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-1024x839.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-624x511.png 624w" sizes="(max-width: 1446px) 100vw, 1446px" /></a></p>
<p>Here&#8217;s the parallax website with &#8220;SMOOTH&#8221; scrolling effect for you to download. The website is made of HTML5/CSS/JavaScript. It&#8217;s free to use for your website, but it only works on Google Chrome. For other browsers everything works perfectly except for the smooth scrolling effect.</p>

<div class="btn-group">
<a href="https://blog.identitydesign.us/parallax-smooth-scrolling-website/" target="_blank" class="btn" onClick="_gaq.push(['_trackEvent', 'Parallax', 'Demo', 'https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip']);">DEMO</a><a href="https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip" class="btn" onClick="_gaq.push(['_trackEvent', 'Parallax', 'Download', 'https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip']);">Download</a></div><p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/free-splatter-art-poster/" rel="bookmark" title="Freebies: Paint Splatter High-Res Art Poster Template">Freebies: Paint Splatter High-Res Art Poster Template</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
