/    Sign up×
Community /Pin to ProfileBookmark

[RESOLVED] Alert before form submission

Hi,

I have a very basic postcode validation script which works brilliantly, however I require a new validation adding to this. I want to single out people with specific postcodes, to be mor specific anyone with a Milton Keynes postcode should receive an alert when they submit the form before it goes to the serverside action page.

I can write a regular expression which detects the postcodes i want to look for, however i am lost as to how i create an alert before the form is submitted without cancelling the submission.

My current validation for the postcode looks like this:

[CODE]
var regExpressPostcode = /^([a-zA-Z]){2}([0-9][0-9]|[0-9]){1}([ ])([0-9][a-zA-z][a-zA-z]|[0-9][0-9][a-zA-z][a-zA-z]){1}$/;

function checkForm(aForm) {

if (!regExpressPostcode.test(aForm.shipPostalCode.value)){
window.alert(“Please enter a correctly formatted UK postcode: eg. AB12 2BA or AB12 12AB”)
//gives focus to field and selects incorrect postcode format text
aForm.shipPostalCode.focus()
aForm.shipPostalCode.select()
return false
}
return true
}

[/CODE]

any help would be greatly appreciated!!

Thanks,

Mike

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@mike-web-devauthorApr 13.2011 — never mind i figured it out. change return false to return true and the form is submitted!
×

Success!

Help @mike-web-dev spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.30,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...