I'm trying to build a very basic login page to an app I'm making for my work using phonegap, jquerymobile and javascript all in Eclipse. I'm using phonegap for the splashscreen function only at present so we'll ignore that in this question. The rest of my app is pure HTML5 with JQM to make it all look pretty.
The app is a staff phone book that has a nested listview that has 199 entries each with 3 sub entries that make calls and send emails. Obviously this listview takes an eternity to load (20 seconds at least) so I want a smaller login page partly to provide some security to the app but mainly to kill some time while the rest of the listview loads. I have tried looking at a lazy load plugin but I think it's beyond my understanding/ability.
I currently have two pages nested within one html file called 'login' and 'phonebook'. Phonebook is where the huge listview lives and 'login' in where I want some magic to happen.
My basic need is to have a login page with a simple 'password' input box and a button labelled 'login'. The onclick of this button should trigger an if statement that compares the text in the password text box to a pre-determined password (before anyone mentions it I know it's not best practice to store the password in my html file but security isn't my main aim here). If they match, the app should take the user to the 'phonebook' page. If not an alert should be shown. Below is the code I have so far:
<div id="login" data-role="page" style="background: url(file:///android_asset/images/Background.png) repeat">
<script type="text/javascript" charset="utf-8">
function validate()
{
if (password="Password")
{
<href="#phonebook">;
}
else
{
alert ("Incorrect Password");
}
});
</script>
<div data-role="header">
<h1>Staff Phone Book</h1>
</div><!-- /header -->
<div data-role="content">
<div data-role="fieldcontain">
<label for="password">Password?</label>
<input type="password" name="password" id="password" value="" />
<a data-role="button" onclick="validate()"> Login
</a></div>
</div><!-- /Content -->
</div><!-- /page -->
Whenever I try to run the app however, the login page loads but I get the following error in my logcat: 11-15 21:16:31.471: E/Web Console(2016): Uncaught ReferenceError: validate is not defined at file:///android_asset/www/index.html:51
Any ideas on what I'm doing wrong? I think I have the function set up right after reading through these forums but I'm still very new to this.
Any advice would be greatly appreciated.
Thanks in advance.
password="Password"will always resolve totruebecause you're not using a comparison operator,==or===. If you want to navigate to a page (in a jQuery Mobile site) after validating the information, use$.mobile.changePage("#phonebook"): jquerymobile.com/demos/1.2.0/docs/api/methods.html – Jasper Nov 15 '12 at 22:11