Only Half Validates, Otherwise Code Works Well?
Mar 25, 2011
I am having trouble getting my code to validate for my speed/distance calculator.I have 2 input prompts: 1 for hours and 1 for minutes. The issue is I can put a number for hours (e.g 7) and W for minutes and the result will display distance is NaN, whereas I am expecting it to alert user to input a valid number. The same issue applies if I switch the order of isNan(hours) and isNaN(mins)
[code]....
View 3 Replies
ADVERTISEMENT
Jun 21, 2009
iam either being really dumb or something is way wrong with the code. i am trying to create a fade in / fade out effect. i know there are tons of scripts out there that do this, but i like to do it myself. my script is only working in firefox at the mo (when it works il cater for other browsers). basically i can get the fade out part to work, but when i want to fade back in it does nothing. now logically id of thought that fading in would be the same as fade out but reversed.
<!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">
[code]....
View 2 Replies
View Related
Dec 2, 2010
I've got following function:
[Code]....
I would like to run this in recursive mode, and I'm starting the function with:
$(function(){
$.bubbles();
}
The problem is, that function works only one (and a half) time. Console shows: start callback start I have not idea what is a problem. Function needs to be run constantly.
View 2 Replies
View Related
Apr 26, 2011
I have been given a piece of code that validates passwords, but need to edit the code with correct variable names and indentations etc.
Here is the original code:
What the variables n1 and n2 are/ what they do?
View 3 Replies
View Related
Aug 15, 2011
I created a page with a thumbnail viewer. Click on a thumbnail and a larger version appears on the same page, NOT a pop up or Lightbox. It previews and validates fine. Even runs in IE. But not in FF(V. 3.6.18). Ideas? Code below with JS highlighted.
[Code]...
View 2 Replies
View Related
Mar 22, 2011
The simple test code below validates a few fields successfully when tested using Safari, Opera, Firefox and ChromeDatepicker does not work in IE, although the validations do work as expected. Is there an issue with datepicker and IE? Is there a condition in my code that inhibits IE?
//// page code follows ////
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
[code]....
View 2 Replies
View Related
Jun 25, 2010
I have a form with 3 sections. The first is always required. The second OR third needs to be completed.The form is used for booking holidays OR flex time in the company I work for. [URL]I have it so the first section is validated, and works fine. I can't work out how to have it pass validation if Holiday OR Flex is done. I can only get it to pass if both are filled in.Here's the code im running:
PHP Code:
<script language="Javascript">
function validate(f){
if(f.Name.value == "")
[code]....
View 10 Replies
View Related
May 21, 2011
here is the page I'm working onhere is the jQuery in use
$(document).ready(function() { $('.error,.success').hide(); $("#send").click(function (){ $('.error,.success').hide("slow"); $.ajax({ url: 'add.php?lnk='+$.URLEncode($('[name=lnk]').val())+'&
[code]....
and in this code, it works, the call is made and text is added. in the other code I don't get a change at all. Not even in the database that add.php manipulates.
View 2 Replies
View Related
Mar 16, 2010
Having a problem with validation, it's been a while since i have done some javascript but i'm pretty sure it used to work on both browsers but i can't get this to validate in FF.
[Code]...
View 2 Replies
View Related
Nov 9, 2009
I wrote this code but it only works every other click So it doesn't work the first time it's called, but it does the 2nd time etc.Zero errors reported. What's wrong? javascript Code:
Original
- javascript Code
function move_up(obj)
[code]....
View 2 Replies
View Related
Jul 3, 2009
I have created a very simple JavaScript code to display larger images of a thumbnail image on the main section of a website. It works fine in FF3 however in IE 7 is giving me an error code of Invalid argument on line 6 character 1. The funny thing is I have used this exact code in another site and it worked fine with IE 7.
View 2 Replies
View Related
Jun 21, 2010
I'm just starting JavaScript and wrote a quick script for Next/Back buttons for a page showing a family outing on our boat. I proudly uploaded the webpage and emailed it out, but people running IE are unable to use the buttons, they simply do nothing.Here is the .js file, I don't think anything in the HTML or CSS is causing the issue but could post those as well if necessary.
var step = 1;
//preload images
var numImages = 13;
[code]....
View 2 Replies
View Related
Nov 23, 2009
function Search( name, category )
{
var sresults = [];
var sri = 0;
if( category != "Any" )
[Code]...
This is probably the weirdest thing I've ever seen. I know the code works since Firefox will output things, but it ONLY outputs when I throw in an alert statement somewhere in the function that gets called. It doesn't matter if it's at the beginning and just says Hi, but then it will run correctly. Without it, Firefox won't go through the function apparently and won't write out the results. I don't understand why this isn't working or why firefox is doing this.
View 1 Replies
View Related
Feb 9, 2010
I've inherited a page that enters data into a database, some of the fields are calculated and one uses today's date. In Firefox it all works fine but in IE it wont load the full page.
View 2 Replies
View Related
May 25, 2010
Ive been sitting with my cod for a while now and dont see what to change..
Im fetching data to a div in the page from n Server side ASP page.
Its all working in Firefox browser but not all runs in IE.
Code:
function displayLocation()
{
var Results;
if (xhr.readyState == 4) {
[Code]....
I added an Alert as you will see so i could see in IE if the responseText data was getting there and it seems to be fine, it just wont display the data in this line...
Code:
window.document.getElementById("Span1").innerHTML = Results;
View 4 Replies
View Related
Oct 19, 2010
I'm attempting to learn Ajax and the simple test program I wrote works great in all major browsers (IE8, FireFox, Opera, Chrome, etc).The javascript calls a tiny perl program to replace what is in the <div> area with a random number.The problem I'm having is the code does work in IE6 and IE7, but unlike the other browsers you can only click on the link to activate the AJAX function one time. After the second or more clicks it will not provide a new random number like it does in the other browsers.The only way I found to get a new random number in IE6/7 is to first clear my temporary internet files. The I get one more click and it provides a new random number but stops again until I re-delete my temporary internet files.The test program is located here:
http:[url]....Here is the complete code:
Code:
<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<HEAD><META HTTP-EQUIV="Pragma" CONTENT="no-cache">[code]..........
View 3 Replies
View Related
May 28, 2010
<HTML>
<HEAD>
<TITLE> MEA </TITLE>
[code].....
View 1 Replies
View Related
Oct 26, 2010
I have the following code that I modified from an online article that works great in internet explorer but not in Mozilla Firefox.
Code:
<script language="JavaScript">
var NS4 = (document.layers);
[code].....
View 3 Replies
View Related
Jan 9, 2012
I am using jquery to popupa calendar. I have done this on several pages with not problems this one page keeps claiming the error below. Message: Object doesn't support this property or method
[Code]...
View 5 Replies
View Related
Apr 27, 2011
I am using a jQuery script to create charts called Highslide. I posted for help on their forum but they are a little slow, and this issue is really regarding a javascript error, I believe.
This issue happensoccasionallyin Internet Explorer 8, where the chart wont appear at all and throws an error. If you refresh the page again, it will display the chart fine. Ive been through this code and can not find what the problem is. what is odd, is if i put the code up on another server it works the first time.
View 1 Replies
View Related
Sep 7, 2009
I am trying to set up some code to control a mouseover popup image. I have the script that works except in certain browsers the results are different.This is the page: (just mouse over the first players name).Here is the script:
<script type="text/javascript">
function ShowPopup(hoveritem)
{
[code]....
View 6 Replies
View Related
Mar 1, 2007
I have some code, using all the DOM documentation in the developer.mozilla.org website. For some reason it's only working in the newest Firefox 2 versions, and not 1.5.0.x
I'm having a hard time finding any documentation of what's not supported.
Can you guys help me? Here are the functions I'm calling:
getRangeAt();
range.collapsed
document.createElement("div");
range.cloneContents();
element.appendChild(clone);
document.getElementById("divid");
do you think it's createElement div? Maybe I can't create a div element?
View 1 Replies
View Related
May 22, 2009
I am working on a <UL><LI> slide out menu for my site so I can link to every page from every other page to help with ease of navigation. I used an automatic generator I found on the web to create the menu, and I've pretty much modified it to the point I want. I have two issues that I can't figure out though, and believe they are controlled by javascript, and I know absolutely nothing about it.
1. Items that have sub-menus should display arrows.
2. Background goes gray on hover - I do not want it to change.
I have neither of these issues with java disabled. Do I even need the scripts that were made by the generator or can they be changed so I don't have these problems?
You can view the working menu @ [url]
CODE:
View 2 Replies
View Related
Oct 10, 2011
I downloaded a form that I'm trying to add some modifications to. I'm appending a class to a tag once the validation on a form input fails. But I can't seem to have it removed once the validation "passes"
HTML:
<ul id="formField">
<li>
<label>Phone:</label>
[Code].....
View 1 Replies
View Related
Feb 23, 2011
I'm trying to append sth. like this:
<script>
$('#text').load('test.html h1'); // loads h1 content out of test.html - works fine
$('#text h1').append('test'); // should append 'test' to h1 - does nothing!
[code]....
View 2 Replies
View Related
Oct 11, 2010
I was under the impression that jquery is cross browser. For some reason in chrome when I click my button, nothing happens. this works in FF and IE though[yes, this code is extremely ugly and not proficient, but it works in IE/FF. I just started learning jquery,
$(document).ready(function() {
$('.extra_btn').click(function() {
$('.extra_btn').fadeOut('fast');
[code]....
View 8 Replies
View Related