Simple PostCode Checker - Can't See For Looking
Feb 9, 2009
You're going to look at this code and see straight away what's wrong with it, but I've been staring at it for too long that my brain just isn't reading it right.
It's a basic input, you type in your postcode, if it is in the list of postcodes I entered then it replies with a 'Yes' response, otherwise a 'No' response. Unfortunately it keeps saying 'Yes' to anything that's entered.
Here it is, and apologies again for it being annoyingly simple, you know when you've been looking at code too much and you just can't see the small things anymore. [input type.needed=coffee]
View 4 Replies
ADVERTISEMENT
Jun 27, 2010
I am trying to finish this small project and seem to run into a snag.
Its a simple word checker that provides a prompt and you input a single word no punctuation or white space and then answer question does begin with vowel and if there are two adjacent vowels.
This is my first javascript:
View 13 Replies
View Related
Nov 10, 2010
I'm trying to create a simple html page, with javascript (NO AJAX!, etc,... ) on it, to let me know if an url (remote file) is online or not.
View 9 Replies
View Related
Sep 25, 2010
Basically I'm looking for a method where the user enters their postcode (UK only) clicks enter then they're displayed with their closest region (although not every single UK region will be displayed, only 6 of them). I know this is a fairly tricky one.I've had a look in to Google API though there's nothing really specific for this, does anyone have an idea? or point me in the right direction to achieve this?
View 1 Replies
View Related
Feb 14, 2011
I would like to set the postcode <?php echo $pubdetails['rsPostCode]; ?> as a default value in the form field so that the map area loads up automatically for instance the link above uses postcode bn11 3rg
View 5 Replies
View Related
Jan 9, 2011
My client is using the following script to validate a form : -
[URL]
I want to be able to validate a Postcode by matching a regular expression (using this script). There is no default option with this jQuery script to do so. My question is can I add such a custom regex to this script?
I have only ever written validation in "normal" JS before. Also I would like the JS regex to match the existing one serverside (PHP):
[code]....
View 11 Replies
View Related
May 3, 2011
I have searched everywhere and seems unable to find postcode map data (preferably in lat/long) of Canada. I would need these data up to the LDU in the postcode. My idea is to create a map with the postcode overlay similar to this:[URL]...Are there any third party data source which I can find of?
View 1 Replies
View Related
Mar 10, 2005
Mixture of PHP & JavaScript as you can see.
Code:
/*--------------------------.
|Style Chooser |
|__________________________*/
$style = $_GET['style'];
$res = $_GET['res'];
IF ($style == "") { $style = "v2-green"; }
IF ($res != 1024)
{
print "
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function redirectPage() {
var url640 = "?res=640";
var url800 = "?res=800";
var url152 = "?res=1152";
var url1280 = "?res=1280";
var url1600 = "?res=1600";
var urlnorm = "pieeatersanonymous.com";
if ((screen.width == 640))
window.location.href= url640;
else if ((screen.width == 800))
window.location.href= url800;
else if ((screen.width == 1152))
window.location.href= url1152;
else if ((screen.width == 1280))
window.location.href= url1280;
else if ((screen.width == 1600))
window.location.href= urll600;
else document.write(urlnorm)
// End -->
</SCRIPT>";
}
View 23 Replies
View Related
Feb 27, 2006
I not much of JavaScript Developer, I'm a member of the copy and paste JavaScript Generation, so perhaps someone can tell me where I'm going wrong with my function to compare two dates:
var dt1=document.booking.fromDate
var dt2=document.booking.untilDate
if (Date.parse(dt1.value) >= Date.parse(dt2.value)){
alert("Departure Date must be After Arival Date")
return false
}
return true
The problem seems to be that two date values are been compared as strings, how can I force them to be compared as dates. I thought the Date.parse() function would handle that.
View 5 Replies
View Related
Nov 21, 2011
I have good script
<script type="text/javascript">
function chkcontrol(j) {
var total=0;
[code]....
View 2 Replies
View Related
Jun 4, 2011
I want to use this code but there is no step by step instructions.
View 2 Replies
View Related
Dec 16, 2009
i want to create one java code that do this :
1-one counter is counting 20 to 0.
2-if counter 0 then choose random string between "click one" , "click two" , "click three" and show it.
3-in other table we have three button that name`s are "one" , "two" ,"three".
4-for continue page user must click true button,if user click false button alert "wrong".
View 13 Replies
View Related
May 19, 2010
Visitors enter information in textarea's and form fields and I wish to allow them to have this spell checked before submitting.
What methods are open to me to do this.
View 2 Replies
View Related
Nov 12, 2010
I have come across javascript lint but it seems to be a bit outdated... is there a more up to date syntax checked for javascript or does javascript lint still do the job?
There are several online tools I have seen but unfortunately these are no use as I need to be able to run it from the command line and (hopefully) be able to import it into vim.
View 5 Replies
View Related
Jul 2, 2002
I have a whole heap of Javascript that I want to compress (by removing line breaks etc). When laid out with line breaks, all works fine. When compressed ... BANG!
I suspect that there is a semi-colon missing somewhere which is only breaking when the return is removed. However, I'd like to run the whole block of javascript through an online validator instead of straining my eyes trying to locate the piece of the script at fault.
Is there such a thing? When I search for 'Javascript validator', I get a whole heap of links to using javascript to validate forms and such like!
View 1 Replies
View Related
Dec 15, 2010
im currently trying to create a real-time username checker. Once the user enters the username I would like some javascript to run and check whether the username is already in the database, then if it is return 'this is already in use'.Unfortunately I am not able to use ajax.
View 9 Replies
View Related
Nov 15, 2009
I'm building a simple custom dropdown menu for a web-site so that I can control look and feel as well as the behavior of an iframe.I've set it up so that when the user clicks on any of the menu's active components, an "if" sequence in the clickHandler() function is activated that gets the element's class. If the event occurred on a dropdown option, the event-target id is checked, and the appropriate function is called. At least this is how it's supposed to work.All of the drop-down options have been assigned the "dmo" class. When I test the menu and click on other elements, it works fine. But when I click the "dmo" drop-down options, nothing happens. Firebug and IE Explorer Developer Tools both show no errors, but on clicking a dropdown option, the correlate code doesn't run at all, and after hours of head-banging, I have no idea why.
View 2 Replies
View Related
May 19, 2010
I have a js counter which keeps track of how many chars are in a field on an asp form. When the user clicks a button further down in the form, the form generates more fields. This also causes the js counter to reset to its original value, as the page is 'reloading' in a way. How can I check this value and keep it the same when the user clicks this button?
I am including the code I have.
javascript
counter in code
button
I have tried
It compiles but the value remains reset.
View 4 Replies
View Related
Jun 20, 2011
I have 2 fields. Products and Date. I want an availability checker that will make sure the item is available. Here is my script:
[Code]...
View 1 Replies
View Related
May 3, 2006
I am looking to use a spell checker in my multi-field forms and am trying to
find something open source and easy to install and use.
It could be either AJAX, DHTML or Javascript.
View 3 Replies
View Related
Mar 19, 2008
I'm new to Javascript but not new to programming.
I find JS more time consuming because I have to manually search line by line for a single error. In C++ or C the compiler tells me the exact line number of the error or at least what the error is so I can research it.
With JS, notepad or Firefox's source viewer doesn't indicate anything. Is there any software available that will error check JS codes?
View 7 Replies
View Related
Jul 23, 2005
I have a form1 with two fields, field1 and field2. I want the contents of field1 to be transferred to field2 onBlur, but with some changes. I want the contents of field1 to have its spaces replaced with Dashes, and all punctuation removed, so this can happen:
FIELD 1 value:
Today's rate is 15%, & the outlook is good.
onBlur should then create a value of:
FIELD 2 value:
todays-rate-is-15-percent-and-the-outlook-is-good
Notice that the "&" was converted to "and", the "%" to "percent". The comma
was deleted and all spaces replaced with Dashes. The second field should
only every contain alphabetic letter, dashes, and numbers.
View 3 Replies
View Related
Feb 20, 2006
I want to replace all occurences of this ),( in my string with a comma .....
statement=statement.replace("),(",",");
This only does the first. I've been reading about adding "/g", but haven't
got it to work. I've messed about with no luck. Any quick pointers?
View 2 Replies
View Related
Oct 2, 2006
i look for a simple ajax, for a beignner, able to send a request for a text file and show its content in a <div />.
View 6 Replies
View Related
Mar 18, 2003
Here's a small collection of bookmarklets for disecting your own (or other people's!) websites. They do things like, show all TABLE elements with a red border, hide non-link images, and so on...
View 23 Replies
View Related
Oct 26, 2005
i need a 5 second counter to start when the page loads. basically the usage is I want people to click a link, and if the page has been loaded for more than 5 seconds, do thisFunction().. if not, do nothing.
so basically
<script type="text/javascript">
window.onload --> start the counter
// when the counter hits 5 seconds, set var done = true;
function thisFunction() {
if (done = true) { proceed with function)
else {do nothing}
}
</script>
...
<a href="linkyPoo.html" onclick="checkCounter">OO oOO, click me!</a>
View 8 Replies
View Related