Here is my script...
function confirmBid()
{
amount = document.submitBid.Bid_Amount.value;
confirm("You are about to submit a bid of $" + amount + ". Is this correct?");
}
Here is my onsubmit...
onclick="return confirmBid();"
How should I implement your...
I have a simple javascript confirm box that says "Are you sure you want to continue? When I select no it submits anyway instead of letting the user stay there.
Help...
OK. Let me ask a different question...
How do I write a function that will be called on form submit that will examine all the type=file fields and when it finds files that do not have a pdf extension will throw an alert and name the offending fields for the user?
I'm not very good at this...
Here's what I have but it's not working. What's wrong?
function check(file,idv) {
ext = file.substring(file.lastIndexOf('.')+1);
if (ext != "pdf") {
alert("You must upload document in Adobe PDF format...");
event.returnValue=false...
I have a file input box that gets validated by javascript. I am testing the extension of the file to determine if it is a pdf. If not an alert box should be thrown.
After the alert box is thrown and the user clicks OK I want the input field to clear and the bad value removed.
Here is what I...
Is there a way to make wildcard entries work with IIS 5 and host headers? Since a website only responds to the inputted host header names it has in IIS, any non listed host name will not resolve.
Any experts on this?
I discovered the issue. For some reason MS DNS is not writing the ns1.domain.com at the beginning of the SOA line. Instead it starts it with @.
Any idea why this is?
I am properly setup as the Primary and the slaves are setup correctly.
I'm more inclined to think it is something to do with the settings in the zone file itself...
I setup Windows DNS several days ago and my domains are resolving fine. When I go to www.dnssstuff.com and do a lookup on a domain I get the following message:
WARNING: Your SOA (Start of Authority) record states that your master (primary) name server is: 65.245.134.64.. However, that server is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.