<?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 By the way I added an id to in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058109#M52890</link>
    <description>&lt;P&gt;By the way I added an id to the anchor&lt;/P&gt;

&lt;P&gt;&amp;lt;a id="login_action"&amp;gt;Login&amp;lt;/a&amp;gt;&lt;/P&gt;

&lt;P&gt;and found this code on Jquery Mobile page but doesn't work, when I tap on Login anchor nothing happens&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; jQuery( "#login_action" ).on( "tap", function() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert('login');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.mobile.loading('show');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var form = document.getElementById('loginuser');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //alert(form.email.value + '-' + form.pass.value);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; intel.xdk.device.getRemoteData(rest_url + "mobile/login/", "POST", "&amp;amp;email="+form.email.value+"&amp;amp;pass="+form.pass.value, "success_login", "error");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //return false;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; });&lt;/P&gt;

&lt;P&gt;Please help ASAP because is very weird, remember that in Emulator works but in App Preview is the problem.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 19 Mar 2015 17:57:29 GMT</pubDate>
    <dc:creator>Alex3</dc:creator>
    <dc:date>2015-03-19T17:57:29Z</dc:date>
    <item>
      <title>App Preview Submit()</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058108#M52889</link>
      <description>&lt;P&gt;Hey I am here again with something very weird.&lt;/P&gt;

&lt;P&gt;I have this code&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;form id="loginuser" method="post" action=""&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="main" data-role="content" class="ui-content"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="row"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="column"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="form-group"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label for="bii-login-email"&amp;gt;&amp;lt;span&amp;gt;Email login&amp;lt;/span&amp;gt;&amp;lt;/label&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span class="form-element-wrap"&amp;gt;&amp;lt;input id="email" name="email" type="text" placeholder="email" value="tello@biipit.com"/&amp;gt;&amp;lt;/span&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="form-group"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label for="bii-login-password"&amp;gt;&amp;lt;span&amp;gt;Password&amp;lt;/span&amp;gt;&amp;lt;/label&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span class="form-element-wrap"&amp;gt;&amp;lt;input id="pass" name="pass" type="password"&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;placeholder="password" value="123456"/&amp;gt;&amp;lt;/span&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="row"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="column small-10 small-offset-1 login-set"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p class="button-login"&amp;gt;&amp;lt;a href="javascript:$('form#loginuser').submit();"&amp;gt;Login&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;&amp;lt;a href="javascript:"&amp;gt;Forgot Password&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;&amp;lt;a href="javascript:"&amp;gt;Facebook Login&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;&amp;lt;a href="javascript:"&amp;gt;Create New Account&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/form&amp;gt;&lt;/P&gt;

&lt;P&gt;When I clicked on Login, the app restart... notice that this works on Emulator but not in App Preview&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2015 16:24:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058108#M52889</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-19T16:24:12Z</dc:date>
    </item>
    <item>
      <title>By the way I added an id to</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058109#M52890</link>
      <description>&lt;P&gt;By the way I added an id to the anchor&lt;/P&gt;

&lt;P&gt;&amp;lt;a id="login_action"&amp;gt;Login&amp;lt;/a&amp;gt;&lt;/P&gt;

&lt;P&gt;and found this code on Jquery Mobile page but doesn't work, when I tap on Login anchor nothing happens&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; jQuery( "#login_action" ).on( "tap", function() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert('login');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.mobile.loading('show');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var form = document.getElementById('loginuser');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //alert(form.email.value + '-' + form.pass.value);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; intel.xdk.device.getRemoteData(rest_url + "mobile/login/", "POST", "&amp;amp;email="+form.email.value+"&amp;amp;pass="+form.pass.value, "success_login", "error");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //return false;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; });&lt;/P&gt;

&lt;P&gt;Please help ASAP because is very weird, remember that in Emulator works but in App Preview is the problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2015 17:57:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058109#M52890</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-19T17:57:29Z</dc:date>
    </item>
    <item>
      <title>Well I saw that no body help</title>
      <link>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058110#M52891</link>
      <description>&lt;P&gt;Well I saw that no body help me with this issue, but I continuous working finding a solution and now I detected that the problem is when I try to submit a form, every time that I try to submit a form, the app preview is restarted, a gain in Emulator works perfectly.&lt;/P&gt;

&lt;P&gt;I hope that some body help me because my head goes to blow out with this App Preview&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2015 18:34:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/App-Preview-Submit/m-p/1058110#M52891</guid>
      <dc:creator>Alex3</dc:creator>
      <dc:date>2015-03-19T18:34:54Z</dc:date>
    </item>
  </channel>
</rss>

