Why Does This Statement Give An Error When The I Hv One Checkbox?
Jul 23, 2005
I have a page with checkboxes generated by a script. Users are suppose to select the checkboxes and click on a button to process their selection. The codes work fine except when I only have one checkbox on the page. Then it will not register sReturn.....
View 6 Replies
ADVERTISEMENT
Aug 1, 2009
i have a page with lots of checkboxes and hidden fields. When i tick a checkbox i want it to give the hidden filed a value. But give it no value if it is not ticked. For every checkbox i have a hidden field is with it. Both the checkbox and the hidden field send information. I have used some js scripts but they don't seem to work with more than one checkbox.Example:
<input type="checkbox" name="box1" id="box1" value="4th July 2009,">
<input type="hidden" name="price1" id="price1" value="0">
So when box1 is ticked it then gives price1 a value. But if not ticked then the value remains at 0. I want it to give a value of 699.There will be about 100 checkboxes and hidden fields on the page. Also onclick behaviours do not work because it may still send the information if the checkbox is not checked.So for the next checkbox and hidden field i use box2 and price2.
View 1 Replies
View Related
Jan 26, 2009
I'm using the following code
Code:
<script type="text/javascript">
function checkField() {
var filebox = document.getElementById("File");[code]...
to try and prevent users from uploading files in an <input type="file"> that have characters that are not conducive to downloading. The problem I'm finding is that the code above seems to look at the whole path that is in the input box as opposed to just the file name. I know absolutely nothing about javascript, does anyone know how I can manipulate this code to have it just look at the file name?I've also posted this question at the following links: http:[url].....
View 3 Replies
View Related
May 30, 2011
how to get my form to give an error message if the telephone or email is not filled in. I only need one of them to be filled in, i.e. it's a contact form, I need to be able to respond somehow. I can make it do an error for each individually, but not either or. I was trying to use an OR statement. || but I couldn't make it work
View 12 Replies
View Related
Oct 19, 2011
I have taken part of some code I know works and simply added a print statemet to it as I want it to print to the command prompt, where I am running the script, the value of REMOTEDIR why the addition of the print statement provides an error: ERROR: JScript runtime error: Object expected
[Code]...
View 1 Replies
View Related
May 26, 2010
I am having a strange issue with jQuery where if someone clicks a checkbox, then a hidden div would slideDown using jQuery but for some reason, the intial click on the checkbox works and shows the hidden div but it does NOT work when you click on the checkbox again to hide the div. [URL] On the borrower and lender tabs you'll see checkbox i speak of by the "Mailing address same as Property Address"
[Code]...
View 2 Replies
View Related
Apr 14, 2010
I'm getting a value from the database either true/false. I have a alert box that shows it being true/false. I want a checkbox to be checked if true else not. Here is the line of code that I have and it just automatically checks everytime, which I obviously don't want.
$('#returnableCheckbox').attr('checked', $(selectedPlatform).find ('.equipmentReturnable').val())
View 1 Replies
View Related
Apr 1, 2002
I haven't really gotten to far into javascript, but i think i'm going to need to with a particularly annoying problem with one of my javascript statements.
i use this statement in some of pages to take the user back to the referring page:
Code:
<a href="<!--#echo var="HTTP_REFERER"-->">BACK</a>
the problem is if the page is directly accessed this code doesn't work obviously.
error messages suck, what can i do to validate this and if a referrer isn't found then redirect it to the home page of my site?
View 1 Replies
View Related
May 30, 2010
i get a syntax error message (line 43 character 82) for this line if (document.contest.month.selectedIndex=5 && document.contest.day.selectedIndex=31) { what am i doing wrong here (it is an alert message if the person's birthday is the 31st of may)
View 2 Replies
View Related
Mar 22, 2011
What does this error mean? Problem at line 15 character 9: Combine this with the previous 'var' statement. var $columnTwo = $('#content-right').innerHeight(); Problem at line 16 character 9: Combine this with the previous 'var' statement. var $columnThree = $('#right-column').innerHeight(); Problem at line 19 character 9: Combine this with the previous 'var' statement. var maxNumber = Math.max($columnOne, $columnTwo, $columnThree);
[Code]....
View 5 Replies
View Related
Jan 21, 2005
I'm trying to make a 'Select All' button/link which will select all or deselect all checkboxes with a certain name. Now, i have a few sets of checkboxes, so i made a general javascript function. It works perfectly in IE but doesn't in FireFox. I get an error:
Error: document.deleteEmails has no properties
Source File: http://localhost/MyMail/admin/d_email.php?LID=92eb5ffee6
Line: 124
Line 124 is the line with the for-loop on it. deleteEmails is the name of the form. The input 'fieldName' is the field name to look out for to select/deselect and selectName is the object relating to the checkBox i'm using to do the 'de/select all'. Code:
View 5 Replies
View Related
Apr 20, 2009
I have a textbox that is dynamically added and a checkbox that is dynamically added to a page. The textbox is populated on the PageLoad event and I want to be able to check the checkbox and have the textbox cleared.Here is my javascript:
<script type="text/javascript" language="javascript">
function clearName()
{[code].........
It gives me an error saying that 'tbCustName' is null
View 2 Replies
View Related
Jan 30, 2011
Firebug returns an error saying msg.elements is undefined. I'm trying to make a function that will enabled a delete button if any of the check boxes in a list are checked.
function selectone () {
var msg = document.getElementsByName('pm');
var i = 0;
for(i; i < msg.elements.length; i++){
if(msg.elements[i].checked == true){
document.getElementById('multiple_action').disabled = false;
document.getElementById('drop_button').setAttribute("class", "drop_button");
}else{
document.getElementById('multiple_action').disabled = true;
document.getElementById('drop_button').setAttribute("class", "drop_button disabled");
}}}
View 1 Replies
View Related
Aug 10, 2010
My code gives me an error only the first time when i press the checkbox. If i press it for the second time or just to uncheck the checkbox and it gives me the right answer.I use IE7, xampp with appache server and Windows7.
Message: 'null' is null or not an object
Line: 76
Char: 3
Code: 0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>[code]............
View 1 Replies
View Related
Dec 30, 2009
I am using mysql4.0. Here i have used one syntax:
create table vimal(Customer int(11));
INSERT INTO vimal(customer) VALUES (001);
which works perfect in mysql5.0. But when i am trying to execute it in mysql4.0, it shows error: "1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '; INSERT INTO vimal(customer) VALUES (001)' at line 1"
View 1 Replies
View Related
Aug 13, 2011
I'm trying to pass this string and I keep getting the "missing ; before statement error" which I know means I not escaping something or something,
content='<a href onclick="javascript: document.getElementById 'searchbox').style.display='inline'">here</a> to enter your address' +'<div id="searchbox" display="hidden"><form action="javascript:getDirections()">' +'<input type="hidden" SIZE=40 MAXLENGTH=40 name="saddr" id="saddr" value="" /><br>' +'<div>';
View 5 Replies
View Related
Apr 4, 2011
my webstie allows users to change the color of the background, so to keep the text readable I have it changing as well.the color picker I am using has text boxes with rgb values 0-255 for each.I am trying to get one bit of text to alternate between red and blue with the conditions
Code:
if(blue>green && blue>red)
{
[code]....
View 2 Replies
View Related
Dec 21, 2006
I shoud give a "value" to an DIV's ID that change following the name of the
directory where the file is.
For example the file is here:
www.website.com/web/01/file.html
Is it possible with javascript to give the value "01" to the DIV's ID?
<div id="namedirectory"something inside </div>
so it could be readed as:
<div id="01"something inside </div>
I found in internet this one:
<script language="JavaScript">
fullpath=location.pathname;
document.write(fullpath);
document.write('<br />');
result=fullpath.split("");
document.write(result[5]);
</script>
it's something that could work?
I don't know how to recall the value in the ID...
View 6 Replies
View Related
Apr 15, 2009
I have two functions. How to give onchange events.
function toggleDivs(c) {
-----
---}
function disable3checkboxes(event, srcElement) {
---
---}
View 1 Replies
View Related
Jul 20, 2005
I would like to have just the top row cells of a table to have borders - is
this possible/easy? or do I have to make the title row another table?
View 2 Replies
View Related
Mar 24, 2010
How do i acces variable: id inside <a href.. and append my querystring variable to it?
example
<div id="email">
<a href="Emaillist_3212.html?id="><img alt="list" src="pics/email32.png"/>
<span class="name">Emails (?)</span>
[Code]....
View 4 Replies
View Related
Aug 17, 2010
I'm working on this page: Work in progress
I'm using this tutorial:
On my work in progress link, I have two players on one page that just replace each other. The problem is with the left and right navigation arrows on the picture viewer. When you switch to the video player (grey video button on below player) the navigation arrows remain, I want them to only appear on the picture viewer. I think I can do this using z-index in css but need to give the two arrows some id's so I can select them. I can't seem to work it out in jquery! How to give the two images id's (see code below) or even better, make them only appear when you are on the picture viewer.
//** Step Carousel Viewer- (c) Dynamic Drive DHTML code library: [URL]
//** Script Download/ [URL]
//** Usage Terms: [URL]
//** Current version 1.9 (July 28th, 10'): See [URL] for details
jQuery.noConflict()
var stepcarousel={
ajaxloadingmsg: '<div style="margin: 1em; font-weight: bold"><img src="ajaxloadr.gif" style="vertical-align: middle" /> Fetching Content. Please wait...</div>', //customize HTML to show while fetching Ajax content
defaultbuttonsfade: 0.4, //Fade degree for disabled nav buttons (0=completely transparent, 1=completely opaque)
configholder: {}, .....
View 11 Replies
View Related
May 2, 2009
I have a text box to which I give focus when a page loads. There is more than one submit button on the form. When I enter something in the textbox then hit Enter the first submit button on the form is activated. Is there some simple code I can use to shift focus to the submit button I want as I press Enter?
View 10 Replies
View Related
Oct 5, 2009
I was wondering if there was any way I can give a child element, preferably the first one, a link through a parent element with an ID. code...
View 6 Replies
View Related
Nov 30, 2011
I have a image which need to be cropped from edges slightly to give a hexagon shape. see the attached image to see how the appear ance should be.
Would lik to crop images while loading on to this frames/boxes.
View 3 Replies
View Related
Jul 25, 2006
I found this matrix animation and was thinking it would be neat to run inside an inset table within its background with text over it and an image behind the vertically running text, though as it is right now it over takes everything on its own, how would it be possible to place it in a layer, I am referring similar to z-indexing it, also I think its background would need to be made semi-transparent or simply removed and then the tables background used instead? Code:
View 4 Replies
View Related