Form Will Not Display With Code
Nov 24, 2006I am trying to call a form on another domain with the following code and the form does not display in IE 7, but it works in FireFox. Code:
View 4 RepliesI am trying to call a form on another domain with the following code and the form does not display in IE 7, but it works in FireFox. Code:
View 4 RepliesI am looking for a general purpose javascript snippet that enables me to
<div> or <span> HTML to make portions of the form be hidden and then appear.
The form contains about 12 sections and some sections can contain
subsections. When the user clicks on a checkbox, I want previously hidden
text boxes, radio buttons, text, drop down menus, and additional checkboxes
to appear. In some cases, clicking on a checkbox in a section can cause
additional previously hidden text boxes, radio buttons, text, drop down
menus, and additional checkboxes to appear.
Within each section, a list of individual names is displayed with an initial
checkbox beside each name being displayed. Clicking the checkbox beside a
name is what triggers the hidden info to be displayed. The server side
application is written in php and the field names are assigned using
brackets as the array is created. As an example the HTML checkbox beside
the first name <input type='checkbox' name='sect1custname[1]' value'First
Name'> The HTML for the next name woud be exactly the same except the name
field would be defined as name='sect1custname[2]'. All of the other input
buttons, boxes, menus, and text would use the same naming conventions so
that the server side module can correctly process the data.
I am hoping to keep this as generic as possible so that we can add, change,
and/or delete entire sections simply by creating the appropriate HTML and
surrounding it with the correct <div> or <span>. I understand that there
may need to be some javascript wrapped around the checkboxes.
If you know of , or have, or can develop the code, please send particulars
to jscott4272 at comcast dot net. If there are any costs associated with
the code, just let me know what they are. If you have any questions or need
additional information, please email them to me.
I want to use a button to display a pdf file. I have Windows 2000
server, IE 6 and Acrobat 7 with plug-in. I can use <a> link to display
it.
I search this group for js code but they don't work. I tried this
code:
<form><input type="button" value="View PDF" onclick="window.location =
'c:Barcode1234.pdf'">
<input type="button" value="View"
onclick="window.open('c:Barcode1234.pdf')">
</form>
The first button displays "The page cannot be displayed...".
The 2nd button displays new window displaying the drives on the PC,
such as A:, C: and D:.
Why does <a> works but not the code? Could you try the code and fix
it? May be I need to provide the file type but do not know the syntax.
for(var i=0;i<document.all.elements.length;i++){
alert(document.forms[0].elements[i].id);
}
This code displays the ids of only controls in a form, but I'd like it to
display ALL items. For example, not just the ids of buttons, inputs, etc,
but any <span> elements as well. Is there something I could replace with
the "elements"? I tried tags but that doesn't work either.
Im using [url] i have 4 tabs and i want that the 4th is not visible when the <input type="text" name="field" /> is below 5.
I have now the following in php what i want to change to jquery-code
Here is where the display variabel is coming
Because with php you have to submit the form before he can check if the input >= 5 and check what the visibility must be. i want to change it to jquery code but i dunnow how...
I'm trying to run through the simplest tutorials on jquery and for some reason I can't get any of the jquery code to work.I've downloaded jquery and I've made sure that this file is in the same directory as jquery-1.3.2.js.This is the code taken from the tutorial:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">[code]....
when the user clicks on the link it shouldn't take them to [url]....instead it should display an alert box. but it takes me to[url]...every time.
Normally in CSS you can use background: to bring in an image or a swf file and then display a logo over it from within the HTML as below.
<css>
.row-logo{ background: url(banners/boats_harbor.jpg) 0 0 no-repeat; height:172px;}
.row-logo img{ width:387px; height:110px; margin:0 0 0 0;}
<html>
<div class="row-logo"><a href="index.html"><img src="banners/ehba_logo.png" alt="" /></a></div>
However, I am currently working on a banner that rotates through images via javascript that I want to have in the background under css and still be able to display a logo from within the HTML code. As shown above, that is easy with a picture, but how do you call the javascript and then its ID from within the HTML?
I have written a card trick in C++. The purpose of the card trick is the player picks 4 cards and then based on the 4 cards they pick 4 more cards. The player can then switch the card and the computer does some math to determine how to which card was switched. Right now all i can figure out is how to display and flip the card.This is the program I have written in C++
#include <iostream>
#include <string>
using namespace std;[code]....
cout<<"Welcome to our card trick. I believe that given some cards I would be able to tell you which card you switched. Dont believe me! Well lets play. First I will let you pick four cards, then I will pick four cards. Next I will pick four cards. Then you will have the opportunity to pick a card to switch. Then I will tell you which card you switched. Promise I wont peek! Lets begin."<<endl;
for(i=0; i<4; i++){
cout<<"Enter card number"<<endl;
cin>>num[i];[code]......
At the moment, the script creates a gallery with thumbnails from a list of images (from my basic understanding), and I want to add to it so the current code also picks up the text from the alt tag and displays that within a div box positioned absolutely elsewhere on the page, when the main image is displayed.Here is the javascript:
var gal = {
init : function() {
if (!document.getElementById || !document.createElement || !document.appendChild) return
[code]....
How does one cause a form element to appear ONLY if a certain form selection is made before it?
That is for example say there is a form element of type Radio called "format" so only if they select format value = normal then the form input fields called URL and Name are to appear as the next choices otherwise form input field Group and checklist Places are to appear as the next choices.
Just trying to display a javascript alert and for some reason the browser is just displaying the code
I have put the following into a file called test.js but it is just displaying all thie code in the browser - see [url]
I am sure this is something really basic. I have tried this in Firefox and IE
Code:
I'm not exactly sure as to whether this question should be posted here or on the php forum, but I think it mainly has to do with fancybox's zoom feature. My problem is this.
I'm doing SEO for an already established site and this site has a features area with about three different options that use the fancybox zoom script. These boxes all contain pertinent information (SEO heavy) about each option as well as links to different sites. All of the info displayed is pulled from a database via php.
I would like to be able to display the descriptions as searchable content, and be able to track how many people click on the external links, but as it is now none of this shows up on the source code. The fancybox zoom feature seems to open up another window within my main page.
My question is this. Is there anyway that I can retain fancybox and get the content to come up under the source code? Or does this maybe even sound like an unusual effect from fancybox.
I can send some code later, if anyone needs it. I just didn't want to throw everything in here all at once, because it's quite a bit of code involved.
I work for a very large company that has zero communications between IT and the employees...so there is very little possibility of having any code changed.I need to use a web based system that submits orders for my department. The problem is i must order by "task number". I could have 20-30 task numbers so to complete the order I need to go to my company's page and fill out 15 form fields and submit for each task code. It is a terrible pain. 14 of the 15 fields are the same for each order... only the task code changes.
View 7 Replies View RelatedCan someone tell me the code to display dropdown box showing a default value as selected which can vary as per the user�s condition using script..i,e by enclosing in document.write..
Now i need to print a for loop counter variable's value as the default selected option if a condition satisfies as shown below..code...
By luck I had somehow found a way to collect data with a form, perform
calculations with JavaScript and display the form and calculated
results on the same screen.
Now I can't figure out how to do that again. The only methods of
reporting the calculation results seem to display a completely new
screen/window.
I just want to collect some numeric input data with slider widgets or
text boxes for an alternate method and display additional calculated
results 'real time' as the slider is adjusted. If this can't be done,
after a text box entry is made. Ideally the results would display
without a 'submit' button click.
i want to display the form results on the same page. how do i do that? i have radio buttons, checkboxes, password and texts in my form.
View 14 Replies View RelatedI have created my second Form to File Web Form but basically I took my First Web Form coding (with the Java Script) and manipulated it so that it suited my needs for my 2nd Form (both are very close to being the same).For some reason, I can't get my Java Script validation to take effect. I was wondering if some one could try to pin point why it isn't functioning properly? Again it could be the most obvious thing, but please bear with me as I learn.Just for a little more clarity, I am going to list the things that I have changed to possibly make it easier to pin point:[code]
View 9 Replies View RelatedI am having some difficulty in constructing a window.confirm() function that works with my code.So if the form data is valid, I need to use a window.confirm() dialog box to show the user's total cost based on the rental rate of equipment chosen and the reservation period. The user must accept the cost by pressing the confirm button, and if user cancels do not submit data.I have written this code but cannot figure out how to find the number of days from the 2 date fields and use that to calculate and display the total cost.
//confirm submit and display rental cost
var equip = document.forms[0].equipment.value
var pDate = document.forms[0].pickupDate.value[code].....
I'm working on a form which would display the result in the same div that the form is.
Here is my code so far:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<textarea name="html">
I found his basic code online for a popup login but I don't know how to get the information from it either into php variables or whatever i need to do code...
I put the css on a separate page and just copied the login link and the javascripts. I don't know how to get the information into php variables so i can check it with the database.
I know I'm just asking for the answer but I don't know javascript and i don't want to spend a month learning it just for a login form. If your going to just say go learn javascript then don't post .
I have a form with two basic radio buttons to confirm deleting a record from a database. But I also want to add an extra popup box to confirm a second time, just to be 100% sure this record should be removed from the database.
I followed a few articles I found from Google to get the code, but I have no expierence with JavaScript.I get a popup box when I click the button but it doesn't do anything. When the user clicks cancel on the popup box, I want nothing to happen at all. But when they click "Continue" I want the popup box to submit the form in its current state.
There is a lot of PHP and I'm not sure that I can even post all of it here, but this is the rendered page, so I think that is all that will be needed?Its ok the customer data is displayed on this code, its a sample database to test. The data isn't real.
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head">
[code]....
To be clear:
1. The user presses DELETE on another page, and is directed to the delete_confirm.php
2. The customer information is displayed in a form.
3. The message is shown "Do you want to delete this record".
4. The user selects the "Yes" radio button and submits the form.
5. One additional security the user gets a popup box "ARE YOU REALLY SURE?"
6a. The user clicks "Continue" and the page is submitted. (PHP will handle accessing MySQL)
6b. The user clicks "Cancel" and nothing happens. They just stay on the delete_confirm.php page.
The form works fine with the submit button, but I wanted to add just one popup box as extra security.
Ive got a collection of forms all with check boxes, its basically a coffee menu with four sections.
Say for example the user selects (clicks check box) a small cappuccino, a latte, and an espresso, how can i get the input names (name+size of coffee) to appear with the value (cost of coffee) in another div so i can then calculate sub-total, add vat etc
So far ive only managed to get the users selections to appear where i want using jQuery serialize, however im having a little trouble picking out the values to carry out calculations on them.
note : this is a made up project for a fake client and cant involve any server side scripting.
i want to create a form that allows a user to enter his/her info then display the result overlayed a bg image [URL]
My question has to do with fonts. Does this work if the user does not have the same font on their system?
If yes, what is this called (as in, what should I be searching for (google or dev shed)). [don't need to be baby-sat if I know how to feed myself :-) ].
I'm looking for different JS form validation techniques. I've seen quite a few but nothing that really stands out. I'm particularly interested in finding design techniques...ie: how and where are the errors displayed inside a form? I realize that I can't count on JS for validation, but I'm trying to add an assistive technology to make a web form feel more like a web application. I'd love to see your favorite way of displaying form errors via JS. I've got a few of my own but if you've ever tried to do this you know it's a difficult problem to handle the general case.
View 7 Replies View RelatedAlright. I want to make an onchange image thing; where someone can select a name from a form and it will display an image.
I want the form to have two options.
They can pick a MALE or FEMALE version (these two things in one box)
and below it, they can pick different PET versions of it.
So:
1st box: male, female
2nd box: pet one, pet two, pet three, etc
So I decided on my midterm project its going to be a simple gas/trip calculator that calculates the cost of the trip with regards to price of gas an how many miles your going. I am just learning how to use the DOM so please be nice with me lol. Anyway I understand how to grab a field from a form an slap it into a variable but what i cant figure out is how to make the result appear in the result input field. So Here is my code.
<!--
Gas & Distance Calculator
Author: Kevin Grissom
[code]....