I'm trying to implement this virtual tour: http://www.granite.mb.ca/whiteshell/betula/vr/beach.htm into the new version of this site. By the way, I didn't design the old site so don't hold it against me.
The old developer emailed me all the files for this virtual tour. She included all of the...
Oooh ok. So if my poster is going to be 24x30 I'm going to use a resolution of at least 266. They haven't let me know the size of the poster yet, but I have a feeling it's going to be a bit smaller than that. If so, would I use the same resolution?
Suddenly I'm not just the web person but the print person as well.
I have to make a poster - I'm assuming regular poster size (whatever that is). What should the DPI be? And the size in inches should equal the size of the final poster?
Yeah, dumb questions, but again...not a print person.
I want both these functions to run when they submit their password:
function formValidation(PasswordForm)
{
//txtPassword=document.PasswordForm.txtPassword;
with (PasswordForm)
{
if (txtPassword.value.length < 6)
{
alert('Your password must...
I guess I just really don't understand why this javascript function and this form code:
function formValidation(CompanyName)
{
with (CompanyName)
{
if (emptyValidation(CompanyName, "Please enter a Company Name.") == false)
{
CompanyName.focus();
return false;
}
}
}...
I tried, and when I click the button it says "document.txtPassword.value is not an object
function formValidation(PasswordForm)
{
//txtPassword=document.PasswordForm.txtPassword;
with (PasswordForm)
{
if (emptyValidation(document.txtPassword.value, "Please...
Nope!
I don't see why it won't work. You know - even if I take out all of the password stuff and just make it
function formValidation(PasswordForm)
{
//txtPassword=document.PasswordForm.txtPassword;
with (PasswordForm)
{
if (txtPassword.length < 6)
{...
Ok...It's still not bringing up the prompt. I'm sorry, I am clueless, and don't even enjoy doing this stuff, so I'm sure I am annoying you like crazy.
Here is all of my javascript:
<SCRIPT language="JavaScript">
function NewCompany()
{
var NewCompany= prompt('New Company name:'...
The emptyValidation is there because I have a function which checks to see if fields are empty (I didn't post ALL of my code on here, I could if that would help).
I changed it to this and it doesn't make a difference.
function formValidation(PasswordForm)
{...
Shouldn't this test to see how long their password is? It doens't do anything! Even if I take out the first emptyValidation part.
function formValidation(PasswordForm)
{
with (PasswordForm)
{
if (emptyValidation(txtPassword, "Please enter a password.") == false)
{...
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.