Controling If The User Has Slected One Option Or No
Jul 23, 2005
i have one great problem with one form.
i must to know, for submmiting the form, if the user, has change the
select, has select one or no.
in my select i have:
<select name="maquina" >
<option selected="selected" value="0">Elige una opcion</option>
<option value="4">asdfasdf</option>
<option value="5">asdfasdfasdf</option>
</select>
if the selectd value is 0 the user has not select, if isn't 0 the user has
selected one option, in this case the form is submmited.
how can i controle this problemm using javascript?
do you have one sample?
View 1 Replies
ADVERTISEMENT
Aug 15, 2011
how can i cath a html <select> event? i have a <select> list... i want to catch the value of <select> when a user selects an option..
View 2 Replies
View Related
Jun 30, 2011
I am trying to give the user the option of music on my homepage (b/c we've all found it annoying at times...perhaps most times). I have found an "onload" option for the body tag on dotnetspider.com, but it doesn't seem to be working for me.
<body onload="loadMusic()">
<p>
<script type="text/javascript"><!--
function loadMusic() {
var r=confirm("Would you like a background tune?");
if (r==true) {
<input type="button" onclick="show_confirm()" value="Show a confirm box" />
<object class="plugin_video" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="[URL]" height="480" width="640">
<param name="autoplay" value="false" /><embed title="QuickTime" hidden="true" src="sounds/siteBG.wav" mce_src="sounds/siteBG.wav" autoplay="true" loop="true" controller="true"></embed>
</object>
} else {
alert("If you change your mind reload the page to choose again.");
// --></script>
View 6 Replies
View Related
May 11, 2011
I have a drop down box (select) in my website: [URL] that works fine; but the problems is if the user click on a wrong option, it will show a box and if the user click on another option from the box, the last one will be on display and won't go off..
Like this select something and then at the same box change the selection you will see the code will build up boxes on the screen.. How I do for it not happens if the user change the option in the last box, the one before disappears!
View 6 Replies
View Related
Jan 31, 2007
i have an object
<object
id="mediaPlayer"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<param name="fileName" value=""value is here.mp3" />
<param name="animationatStart" value="true" />
<param name="transparentatStart" value="true" />
<param name="autoStart" value="true" />
<param name="showControls" value="true" />
</object>
I want to know how i would get the value of the param "fileName"
View 2 Replies
View Related
Mar 19, 2011
When the user clicks the remove link it properly adds a new option to the dropdown however it adds it 3 times meaning 3 option tags. Why is that?
Code:
// Add a click handler to each anchor tag in the characterList <ul> element
$('#characterList a').click( function(evt) {
evt.preventDefault();[code].....
View 1 Replies
View Related
Feb 26, 2011
In my code, I have the following snippet:
HTML Code:
I want to know how I could direct the user to a html document based upon which option I have chosen in the list (see above). So for example...
If I have chosen '1' in the list (see above), then when I submit the form, I will be directed to a page detailing information related to option '1'. If I have chosen '2' in the list (see above), then when I submit the form, I will be directed to a page detailing information related to option '2' etc.
View 1 Replies
View Related
Aug 24, 2011
How to create dynamic radio button which can edit/add/remove option in the page by user.
If the option of radio button have prepared, I can write the script to show output in the page. But this can do like a said.
I have an example at this page phpform.org ,but I can't track the code.
View 1 Replies
View Related
Mar 27, 2001
Code:
I use a popup to entice subscribers to my mailing list.
Now was told by burst that they dont like that since it pops up over their banner.
Alright fine. How can I control WHERE on the screen a window pop's up?
View 1 Replies
View Related
Apr 3, 2001
Here's one of those things that's probably really simply once you do it once, but, unfortunately I haven't yet. I was wondering if any of you gurus could give me a minute.
I've seen sites where you can only have a certain number of pop up windows open at once.
In other words if you click on one while another is open, it pops in the same window as the first did.
View 2 Replies
View Related
Dec 28, 2004
I'd like to have a drop-down form pass a variable to an embedded flash file. I know the basic idea of how to stop, rewind and play a flash file via JS, and I obviously know how to pass a variable into Flash, but my experience in forms is keeping me from understanding how I would use the form to pass a javascript variable to the flash file.
View 1 Replies
View Related
Sep 5, 2009
I am trying to replace the entire page when the user selects adifferent option in a combo box. The code I have works for the firstiteration. However, It fails everytime there after.I went throughfirebug and it appears after the first refresh it never triggers theready() method.My Code is,
<script type="text/javascript">
$(document).ready(function() {
$("#id_company").change(function () {
[code]....
View 1 Replies
View Related
Oct 21, 2010
I have the checkbox validation. I have it set onClick, this works perfectly with both the mouse click and also if the space bar is used to select the option, which is great. However if a user simply 'tabs' over the option it doesn't validate real time. The solution I came up with was adding a onKeyDown event to trigger the same function.
Code:
<input type="checkbox" id="M_TERMS" name="M_TERMS" value="1" onClick="vldTERMS(this.id);" onKeyDown="vldTERMS(this.id);">
View 4 Replies
View Related
Dec 11, 2009
For example, I have a page: http://www.cmela.com/zz.phpWhen i open a popup by clicking "Click Here to open popup page" and then on popup window, i wanted it to transfer parent page from making a click on a pop up window.Example is at:http://www.cmela.com/zz.phpopen pop up window, and then by clicking on a link on a pop up window i wanted my parent page to go to www.msn.com
View 2 Replies
View Related
May 22, 2006
I'm working on controlling Windows Media Player with JavaScript. I have all my functions working but a few. I want to sync the movie so that when it finishes the movie it loads the new one.
Now I was thinking of doing something like:
function PlayNext(movie)
{
if( Player.controls.currentPosition == Player.controls.duration )
{
// execute code to load next movie
}
}
I have that function being called every half second and I still can't get it to sync.
View 1 Replies
View Related
Aug 3, 2009
I understand the thread title isn't very descriptive, but what I am asking is hard to describe. Basically, I am linking to ID elements on the page. Once the link ttp://www.example.com/page.html#linkID is clicked, it jumps down the page to the ID.Normally, this is not an issue. However, I have a fixed position navigation panel layer above the page content. When the link is clicked, it cuts off part of the content that I want visible because the fixed position layer is covering it.Is there a way with Javascript (even better if it can be done with CSS) to control how far down the page goes once a link is pressed? For instance, can I say: On link press, go to ID and apply top: 20px; or something to the effect?
View 2 Replies
View Related
Feb 11, 2009
I am trying to make a form where the user is only able to select an option from one of the drop down menus and if they click both then submit an error should pop up telling them to select just one. Now I have found this code:
<SCRIPT LANGUAGE="JavaScript"'>
<!--
function validateForm(){[code]....
the first problem is that my menu must be named "id[2]2" which causes a problem due to the bracketed 2 and the 2 after. Is there any way around that?the second problem I forsee is that this will only work with 1 drop down box being unselected. I need a code that will give the warning if nothing is selected OR if something is selected in both drop downs.
View 17 Replies
View Related
Nov 19, 2010
I am searching a solution to change a ComboBox by popup I have found this script on the web. Is it also possible to select the newVendor just after adding? Is this script ok or are there better solutions?
<script type="text/javascript">
<!--
function message(value){
if(value=="newVendor"){// New Vendor is selected
var vendor = prompt("Vandor's Name","");
var elementSelect = document.getElementById('vendor');
try{
[Code]....
View 2 Replies
View Related
Jun 21, 2010
I'm using the following code to remove an option from a select control based on a selection in a different select control and the option text in the select option that is being removed. The code works as I want it to, but I would prefer to use the option value for identifying the option to remove instead of using the option text. I've tried several different ways to do this, but can not find the proper syntax.
[Code]...
View 3 Replies
View Related
Sep 16, 2010
I have an select option list, each option has a numerical id, value and text. Each option has an array of its own. So when I choose an option from this list, I want to insert the options array into another option list with an id, value and text. Whats the best way of doing this? How do I select an array based on the value or text of a select option? For for example, take a list of car makes. If I choose the make Audi, how do I select the array of Audi models and insert these models into another select option list. All makes and models have their own numerical id, value and text.
View 9 Replies
View Related
Mar 5, 2009
I wish to have options show or not show depending on the options selected previously. I think I would be right in saying this needs to be client side and think it must be javascript that is needed here. Either way what method should I use and what is the coding needed to do this.
<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.01 TransitionalEN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head><body>
<form action="" method="get"> .....
View 1 Replies
View Related
Oct 12, 2009
I have a form that uses jeditable to edit-in-place several fields and select boxes. Everything is working great. Now I need to a way to add a new option to the select list. What I would like is the user select "Add New..." from the select list that would pop-up a dialog window where several fields are filled in. When the form is saved the select field is updated with the new ID and description. I use Facebox for pop-up windows to display notes when the user clicks on a topic. I know Facebox can be used to display a form. It would be ideal to use this ability when creating a new option for the select box.
View 1 Replies
View Related
Jul 24, 2010
I'm creating an AJAX user validation so that when a user types in a username, it checks it in the database to see if it exists. I want it to execute after the user finishes typing. I've tried using:
$("#username_field").keyup(function(){
which works, but I don't want a query executed every time the users presses a key. I was wondering if there was a better way to do it. Meaning I what the check to be preformed after the user finishes typing.
View 5 Replies
View Related
Oct 14, 2011
is it possible to track whether user is typing in the browser's address bar or aside google search box ( which appears in most of the browsers besides address bar)? if yes, I would like to know HOW? references are welcome.
View 4 Replies
View Related
Sep 24, 2010
I am currently looking to create a JavaScript menu for a website I am working on. It currently expands and collapses on click. The code in question is pasted below:-
menu_status = new Array();
function showHide(theid){
if (document.getElementById) {
var switch_id = document.getElementById(theid);
[Code]....
As you can see, it basically shows and hides the menu (when clicked). I want it to open the menu when clicked and close when another menu is opened. I have looked and have not been able to find a solution into it. Ideally I donot want it to be a long piece of code as I do have a working menu but with many more lines of JavaScript than the one I have posted.
View 6 Replies
View Related
Nov 28, 2010
I have to come up with a user authenication page the logs the user in and also gives them access to do the right things. I have attached the code and the access file and have got started on a few things.I first need to create a login page with the fields username and password have that check the access database and then proceed it to a page to do the following depending on the user access. For The Login button to even be enabled the username and password must have a value in it. I have no idea how to do that
Add A User [No duplicate Users]
Modify A User
Delete A User
[code]....
View 4 Replies
View Related