<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic @Hamilton Dear i have no idea in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075660#M59795</link>
    <description>&lt;P&gt;@&lt;A href="https://software.intel.com/en-us/user/989179" style="font-size: 11px; line-height: 16.5px; background-color: rgb(238, 238, 238);"&gt;Hamilton&lt;/A&gt;&amp;nbsp;Dear i have no idea about all this. like i told u i have made this done by other guy.&lt;/P&gt;

&lt;H3 class="r" style="font-size: 18px; font-weight: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgb(34, 34, 34); font-family: arial, sans-serif;"&gt;&lt;A href="http://forum.wordreference.com/threads/could-you-please-be-so-kind-enough-as-to-do.2885288/" style="color: rgb(102, 0, 153); cursor: pointer;"&gt;Could you please&lt;/A&gt;&amp;nbsp;HELP ME?&lt;/H3&gt;</description>
    <pubDate>Thu, 07 Jan 2016 07:21:05 GMT</pubDate>
    <dc:creator>janed_o_</dc:creator>
    <dc:date>2016-01-07T07:21:05Z</dc:date>
    <item>
      <title>Cookies for IntelXDK Cache</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075655#M59790</link>
      <description>&lt;P&gt;How do I make it work the below code with IntelXDK Cache. This code work perfectly with chrome, IE &amp;amp; mozila browser. I want IntelXDK to do the same. Remember user choice of Country &amp;amp; City and then redirect them accordingly. User can change their choice ANYTIME.&lt;/P&gt;

&lt;P&gt;js/demo.js&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;   var mytime;
function getPramJs(param) {
	var query = window.location.search.substring(1);
	var parms = query.split('&amp;amp;');
	for (var i=0; i&amp;lt;parms.length; i++) {
	var pos = parms [ i ].indexOf('=');
	if (pos &amp;gt; 0) {
	var key = parms [ i ].substring(0,pos).toLowerCase();
	var val = parms [ i ].substring(pos+1);
	if(key == param.toLowerCase())
		return val;
	}
	}
return null;
}
 $(document).ready(function () { 
	var edit ="";
	edit =  getPramJs("edit");
	var chkCounty = getCookie("country");
	var chkCity = getCookie("city");
	if(chkCounty != null){
		$("#country").val(chkCounty);
	}
	if(chkCity != null){
		$("#city").val(chkCity);

	}
	if((chkCounty != null)&amp;amp;&amp;amp;(chkCity != null)){
		$('#firt').css({'display':'none'});
		$('#change').css({'display':'block'});
		if(chkCity=="city 3"){
			$('#content').css({'display':'block'});
		}

		mytime = setInterval(function(){ redirect() }, 1000);
		if(edit=="1"){
			change();
		}
	}else{
		$('#firt').css({'display':'block'});
		$('#change').css({'display':'none'});
	}
 });
   function myStopmytime() {
    clearInterval(mytime);
  }
// Set cookie
function setCookie(name, value, exdays, path, domain, secure) {
	var expires=new Date();
expires.setDate(expires.getDate() + exdays);
document.cookie = name + "=" + escape(value) +
((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
((path == null) ? "" : "; path=" + path) +
((domain == null) ? "" : "; domain=" + domain) +
((secure == null) ? "" : "; secure");
}
 
// Read cookie
function getCookie(name){
var cname = name + "=";
var dc = document.cookie;
if (dc.length &amp;gt; 0) {
begin = dc.indexOf(cname);
if (begin != -1) {
begin += cname.length;
end = dc.indexOf(";", begin);
if (end == -1) end = dc.length;
return unescape(dc.substring(begin, end));
}
}
return null;
}
 
//delete cookie
function eraseCookie (name,path,domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path == null) ? "" : "; path=" + path) +
((domain == null) ? "" : "; domain=" + domain) +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
function change(){
		$('#firt').css({'display':'block'});
		$('#change').css({'display':'none'});
		 myStopmytime();
}

function showdirec(){
		$('#firt').css({'display':'none'});
		$('#change').css({'display':'block'});
}
function saveLocation(){
	var country =  $( "#country option:selected" ).text() +"";
	if(country != "select your country"){
		eraseCookie("country");
		setCookie("country",country,365);
	}else{
		
	}
	if(city != "select your city"){
		var city =  $( "#city option:selected" ).text() +"";
		eraseCookie("city");
		setCookie("city",city,365);
	}else{
		
	}
	redirect();
	//showdirec();
}

function redirect(){
	var lol = "http://pmckw.com";
	var chkCity = getCookie("city");
	if(chkCity =="city 1"){
		lol= "http://pmckw.com";
	}	
	if(chkCity =="city 2"){
		lol= "https://www.google.com/";
	}
	if(chkCity=="city 3"){
		lol= "kuwait.html";

		}
		if(chkCity =="city 4"){
		lol= "kuwait.html";
	}
			redirectTo(lol);
}

function redirectTo(location)
{
     window.location.href =location;
}
&lt;/PRE&gt;

&lt;P&gt;demo.html&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;!--
  * Please see the included README.md file for license terms and conditions.
  --&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;MumineenApp Downloads&amp;lt;/title&amp;gt;
    &amp;lt;meta http-equiv="Content-type" content="text/html; charset=utf-8"&amp;gt;

&amp;lt;!--
  * The "meta viewport" tag (below) helps your app size appropriately to a device's ideal viewport.
  * Note that Windows device viewports work better when initialized using the @viewport CSS rule.
  * For a quick overview of "meta viewport" and @viewport, see this article:
  *   &lt;A href="http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag" target="_blank"&gt;http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag&lt;/A&gt;
  * To see how it works, try your app on a real device with and without a "meta viewport" tag.
  * Additional useful references include:
  *   &lt;A href="http://www.quirksmode.org/mobile/viewports.html" target="_blank"&gt;http://www.quirksmode.org/mobile/viewports.html&lt;/A&gt;
  *   &lt;A href="http://www.quirksmode.org/mobile/metaviewport/devices.html" target="_blank"&gt;http://www.quirksmode.org/mobile/metaviewport/devices.html&lt;/A&gt;
  *   &lt;A href="https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html" target="_blank"&gt;https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html&lt;/A&gt;
--&amp;gt;

    &amp;lt;!-- &amp;lt;meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1"&amp;gt; --&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no"&amp;gt;
    &amp;lt;!-- &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes, minimum-scale=1, maximum-scale=2"&amp;gt; --&amp;gt;

    &amp;lt;style&amp;gt;
    /* following three (cascaded) are equivalent to above three meta viewport statements */
    /* see &lt;A href="http://www.quirksmode.org/blog/archives/2014/05/html5_dev_conf.html" target="_blank"&gt;http://www.quirksmode.org/blog/archives/2014/05/html5_dev_conf.html&lt;/A&gt; */
    /* see &lt;A href="http://dev.w3.org/csswg/css-device-adapt/" target="_blank"&gt;http://dev.w3.org/csswg/css-device-adapt/&lt;/A&gt; */
        @-ms-viewport { width: 100vw ; min-zoom: 100% ; zoom: 100% ; }          @viewport { width: 100vw ; min-zoom: 100% zoom: 100% ; }
        @-ms-viewport { user-zoom: fixed ; min-zoom: 100% ; }                   @viewport { user-zoom: fixed ; min-zoom: 100% ; }
        /*@-ms-viewport { user-zoom: zoom ; min-zoom: 100% ; max-zoom: 200% ; }   @viewport { user-zoom: zoom ; min-zoom: 100% ; max-zoom: 200% ; }*/
    &amp;lt;/style&amp;gt;

    &amp;lt;link rel="stylesheet" href="css/app.css"&amp;gt;

    &amp;lt;!-- IMPORTANT: Do not include a weinre script tag as part of your release builds! --&amp;gt;
    &amp;lt;!-- Place your remote debugging (weinre) script URL from the Test tab here, if it does not work below --&amp;gt;
    &amp;lt;!-- &amp;lt;script src="http://debug-software.intel.com/target/target-script-min.js#insertabiglongfunkynumberfromthexdkstesttab"&amp;gt;&amp;lt;/script&amp;gt; --&amp;gt;

    &amp;lt;!-- Recommended location for your JavaScript libraries --&amp;gt;
    &amp;lt;!-- These library references (below) are just examples to give you the general idea... --&amp;gt;
    &amp;lt;!-- &amp;lt;script src="lib/mc/hammer.js"&amp;gt;&amp;lt;/script&amp;gt; --&amp;gt;
    &amp;lt;!-- &amp;lt;script src="lib/ft/fastclick.js"&amp;gt;&amp;lt;/script&amp;gt; --&amp;gt;

&amp;lt;!--
  * cordova.js is a phantom lib for "Cordova HTML5 web app," it does nothing in a "Standard HTML5 web app"
  * Seeing a "Failed to load resource: net::ERR_FILE_NOT_FOUND" message caused by this "cordova.js" script?
  * The cordova.js script is required if you convert your "Standard HTML5" project into a "Cordova" project.
  * You can safely ignore the error or comment out this line if you will not be developing a Cordova app.
--&amp;gt;
    &amp;lt;script src="cordova.js" id="xdkJScordova_"&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;script src="js/demo.js"&amp;gt;&amp;lt;/script&amp;gt;

    
    &amp;lt;script src="js/app.js"&amp;gt;&amp;lt;/script&amp;gt;           &amp;lt;!-- for your event code, see README and file comments for details --&amp;gt;
    &amp;lt;script src="js/init-app.js"&amp;gt;&amp;lt;/script&amp;gt;      &amp;lt;!-- for your init code, see README and file comments for details --&amp;gt;
    &amp;lt;script src="xdk/init-dev.js"&amp;gt;&amp;lt;/script&amp;gt;     &amp;lt;!-- normalizes device and document ready events, see file for details --&amp;gt;
    &amp;lt;script src="xhr.js"&amp;gt;&amp;lt;/script&amp;gt;
     &amp;lt;script src="http://code.jquery.com/jquery-1.3.2.min.js"&amp;gt;&amp;lt;/script&amp;gt;
     &amp;lt;script type="text/javascript"&amp;gt;
        var onDeviceReady=function(){                             // called when Cordova is ready
           if( window.Cordova &amp;amp;&amp;amp; navigator.splashscreen ) {     // Cordova API detected
                navigator.splashscreen.hide() ;                 // hide splash screen
            }
        } ;
        document.addEventListener("deviceready", onDeviceReady, false) ;
    &amp;lt;/script&amp;gt;
	
	
    	&amp;lt;!-- css --&amp;gt;
	&amp;lt;link href="css/base.min.css" rel="stylesheet"&amp;gt;
&amp;lt;link href="https://fonts.googleapis.com/icon?family=Material+Icons"
      rel="stylesheet"&amp;gt;
	&amp;lt;!-- favicon --&amp;gt;
	&amp;lt;!-- ... --&amp;gt;

	&amp;lt;!-- ie --&amp;gt;
		&amp;lt;!--[if lt IE 9]&amp;gt;
			&amp;lt;script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"&amp;gt;&amp;lt;/script&amp;gt;
			&amp;lt;script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"&amp;gt;&amp;lt;/script&amp;gt;
		&amp;lt;![endif]--&amp;gt;
    
    &amp;lt;script type="application/x-javascript"&amp;gt; addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } &amp;lt;/script&amp;gt;
    
    &amp;lt;style&amp;gt;
.lbl-xs{
	min-width:100px;
	max-width:100px;
	display:inline-block;
	background-color: #fff;
	font-weight: bold;
}
.fiedline{
	margin:1px;
}
.btn{
    margin-left: 125px;
    margin-top: 15px;
    font-weight: bold;
}
.bold{
    font-weight: bold;
}
.slt{
	width: 150px;
}
.hiden{
	display:none;
}
&amp;lt;/style&amp;gt;
    
    
&amp;lt;/head&amp;gt;


&amp;lt;body class="avoid-fout"&amp;gt;
    
     &amp;lt;script&amp;gt;
        function openExternal(elem) {
            window.open(elem.href, "_system");
            return false; // Prevent execution of the default onClick handler 
        }
    &amp;lt;/script&amp;gt;
    
	&amp;lt;div class="avoid-fout-indicator avoid-fout-indicator-fixed"&amp;gt;
		&amp;lt;div class="progress-circular progress-circular-alt progress-circular-center"&amp;gt;
			&amp;lt;div class="progress-circular-wrapper"&amp;gt;
				&amp;lt;div class="progress-circular-inner"&amp;gt;
					&amp;lt;div class="progress-circular-left"&amp;gt;
						&amp;lt;div class="progress-circular-spinner"&amp;gt;&amp;lt;/div&amp;gt;
					&amp;lt;/div&amp;gt;
					&amp;lt;div class="progress-circular-gap"&amp;gt;&amp;lt;/div&amp;gt;
					&amp;lt;div class="progress-circular-right"&amp;gt;
						&amp;lt;div class="progress-circular-spinner"&amp;gt;&amp;lt;/div&amp;gt;
					&amp;lt;/div&amp;gt;
				&amp;lt;/div&amp;gt;
			&amp;lt;/div&amp;gt;
		&amp;lt;/div&amp;gt;
	&amp;lt;/div&amp;gt;
	&amp;lt;header class="header"&amp;gt;
		&amp;lt;ul class="nav nav-list pull-left"&amp;gt;
			&amp;lt;li&amp;gt;
				&amp;lt;a data-toggle="menu" href="#menu"&amp;gt;
					&amp;lt;span class="icon icon-lg"&amp;gt;menu&amp;lt;/span&amp;gt;
				&amp;lt;/a&amp;gt;
			&amp;lt;/li&amp;gt;
		&amp;lt;/ul&amp;gt;
		&amp;lt;a class="header-logo" href="index.html"&amp;gt;MumineenApp&amp;lt;/a&amp;gt;
		&amp;lt;ul class="nav nav-list pull-right"&amp;gt;
			&amp;lt;li&amp;gt;
				&amp;lt;a data-toggle="menu" href="#profile"&amp;gt;
					&amp;lt;span class="access-hide"&amp;gt;John Smith&amp;lt;/span&amp;gt;
					&amp;lt;span class="avatar"&amp;gt;&amp;lt;img alt="alt text for John Smith avatar" src="images/users/avatar-001.png"&amp;gt;&amp;lt;/span&amp;gt;
				&amp;lt;/a&amp;gt;
			&amp;lt;/li&amp;gt;
		&amp;lt;/ul&amp;gt;
	&amp;lt;/header&amp;gt;
	
	&amp;lt;div class="content"&amp;gt;
		&amp;lt;div class="content-heading"&amp;gt;
			&amp;lt;div class="container"&amp;gt;
				&amp;lt;h1 class="heading"&amp;gt;About App&amp;lt;/h1&amp;gt;
			&amp;lt;/div&amp;gt;
		&amp;lt;/div&amp;gt;
		&amp;lt;div class="container"&amp;gt;
            &amp;lt;section class="content-inner"&amp;gt;
&amp;lt;div id ="firt"&amp;gt;
&amp;lt;div class="fiedline"&amp;gt;
	&amp;lt;span  class="lbl-xs"&amp;gt;Country: &amp;lt;/span&amp;gt;
	&amp;lt;select id="country" style="" class="bold slt"&amp;gt;
	  &amp;lt;option value="0"&amp;gt;select your country&amp;lt;/option&amp;gt;
	  &amp;lt;option value="1"&amp;gt;Country 1&amp;lt;/option&amp;gt;
	  &amp;lt;option value="2"&amp;gt;Country 2&amp;lt;/option&amp;gt;
   &amp;lt;/select&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="fiedline"&amp;gt;
	&amp;lt;span class="lbl-xs"&amp;gt;City: &amp;lt;/span&amp;gt;
	&amp;lt;select id="city" style="" class="bold slt"&amp;gt;
	  &amp;lt;option value="0"&amp;gt;select your city&amp;lt;/option&amp;gt;
	  &amp;lt;option value="1"&amp;gt;city 1&amp;lt;/option&amp;gt;
	  &amp;lt;option value="2"&amp;gt;city 2&amp;lt;/option&amp;gt;
	  &amp;lt;option value="3"&amp;gt;city 3&amp;lt;/option&amp;gt;
	  &amp;lt;option value="4"&amp;gt;city 4&amp;lt;/option&amp;gt;
   &amp;lt;/select&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="fiedline"&amp;gt;
	&amp;lt;button type="button" id="Go" style='' class='btn' onclick="saveLocation();"&amp;gt;Set Location&amp;lt;/button&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
			&amp;lt;/section&amp;gt;
		&amp;lt;/div&amp;gt;
	&amp;lt;/div&amp;gt;



	&amp;lt;footer class="footer"&amp;gt;
		
	&amp;lt;/footer&amp;gt;
	
	   
	&amp;lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"&amp;gt;&amp;lt;/script&amp;gt;
	&amp;lt;script src="js/base.min.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
    
&amp;lt;/html&amp;gt;
&amp;lt;/script&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;

&lt;P&gt;kuwait.html&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"&amp;gt;

&amp;lt;html&amp;gt;

&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;

&amp;lt;/head&amp;gt;

&amp;lt;body &amp;gt;

JAVASCRIPT HERE
	
	&amp;lt;a href="demo.html?edit=1"&amp;gt;Change location&amp;lt;/a&amp;gt;

&amp;lt;/body&amp;gt;

&amp;lt;/html
&lt;/PRE&gt;

&lt;P&gt;PLEASE PLEASE HELP&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 05:54:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075655#M59790</guid>
      <dc:creator>janed_o_</dc:creator>
      <dc:date>2016-01-06T05:54:22Z</dc:date>
    </item>
    <item>
      <title>I am using this code to store</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075656#M59791</link>
      <description>&lt;P&gt;I am using this code to store:&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif; font-size: 1em; line-height: 1.5;"&gt;function funName (value) {&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;    try {
        if(typeof(window.localStorage) !== 'undefined') {
            window.localStorage.setItem("variable", value);
        }
        else
            {
....
            }
    }
    catch(err){
....
    }
}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;and to retrieve data:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;function name {
  try {
        if(typeof(window.localStorage) !== 'undefined') {
            value = window.localStorage.getItem("name");
        } else {
...
            }
    }
    catch(err){
...
    }
}   &lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 07:51:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075656#M59791</guid>
      <dc:creator>Hamilton_Tenório_da_</dc:creator>
      <dc:date>2016-01-06T07:51:36Z</dc:date>
    </item>
    <item>
      <title>@Hamilton please help me to</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075657#M59792</link>
      <description>&lt;P&gt;@&lt;A href="https://software.intel.com/en-us/user/989179" style="font-size: 11px; line-height: 16.5px; background-color: rgb(238, 238, 238);"&gt;Hamilton&lt;/A&gt;&amp;nbsp;please help me to encode my above my code as i have no idea about above javascript code as its done by other guy.&lt;/P&gt;

&lt;P&gt;how do i encode my code with intelxdk? sorry i am a beginner to all this.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 08:25:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075657#M59792</guid>
      <dc:creator>janed_o_</dc:creator>
      <dc:date>2016-01-06T08:25:17Z</dc:date>
    </item>
    <item>
      <title>No body to help me :(</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075658#M59793</link>
      <description>&lt;P&gt;No body to help me :(&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 11:44:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075658#M59793</guid>
      <dc:creator>janed_o_</dc:creator>
      <dc:date>2016-01-06T11:44:42Z</dc:date>
    </item>
    <item>
      <title>@janed you need to change all</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075659#M59794</link>
      <description>&lt;P&gt;@janed you need to change all the fucntions "&lt;STRONG&gt;getCookie&lt;/STRONG&gt;" and "&lt;STRONG&gt;setCookie&lt;/STRONG&gt;"&amp;nbsp;according my suggestion above. Use normal javascript commands to do it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 06:46:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075659#M59794</guid>
      <dc:creator>Hamilton_Tenório_da_</dc:creator>
      <dc:date>2016-01-07T06:46:29Z</dc:date>
    </item>
    <item>
      <title>@Hamilton Dear i have no idea</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075660#M59795</link>
      <description>&lt;P&gt;@&lt;A href="https://software.intel.com/en-us/user/989179" style="font-size: 11px; line-height: 16.5px; background-color: rgb(238, 238, 238);"&gt;Hamilton&lt;/A&gt;&amp;nbsp;Dear i have no idea about all this. like i told u i have made this done by other guy.&lt;/P&gt;

&lt;H3 class="r" style="font-size: 18px; font-weight: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgb(34, 34, 34); font-family: arial, sans-serif;"&gt;&lt;A href="http://forum.wordreference.com/threads/could-you-please-be-so-kind-enough-as-to-do.2885288/" style="color: rgb(102, 0, 153); cursor: pointer;"&gt;Could you please&lt;/A&gt;&amp;nbsp;HELP ME?&lt;/H3&gt;</description>
      <pubDate>Thu, 07 Jan 2016 07:21:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075660#M59795</guid>
      <dc:creator>janed_o_</dc:creator>
      <dc:date>2016-01-07T07:21:05Z</dc:date>
    </item>
    <item>
      <title>@janed: sorry, it is dificult</title>
      <link>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075661#M59796</link>
      <description>&lt;P&gt;@janed: sorry, it is dificult to change without analise all the ideia. As far I see, ou must change 3 functions: setCookie, getCookie and eraseCookie.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Maybe them can be reduced, because inside an app the control is simplier.&lt;/P&gt;

&lt;P&gt;For example, setCookie could be only:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;function setCookie(name, value) {
try {
        if(typeof(window.localStorage) !== 'undefined') {
            window.localStorage.setItem(name, value);
        }
    }
}
&lt;/PRE&gt;

&lt;P&gt;All the controls of domain, path, etc, maybe can be removed. As I said befere, it is necessary to understand better the idea.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:15:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Cookies-for-IntelXDK-Cache/m-p/1075661#M59796</guid>
      <dc:creator>Hamilton_Tenório_da_</dc:creator>
      <dc:date>2016-01-07T17:15:43Z</dc:date>
    </item>
  </channel>
</rss>

