Resolved Array Comparisons Is Always True When It Shouldn't Be

Apr 15, 2009

I have a small textfield input and submit button. The user is required to input the prefix of their UK postcode and a dialogue boxpopsup saying basically yes or no. My problem is I have an array of postcodes, but if for example someone in Liverpool entered their postcode as L1 1AA, it would say 'yes' but if their mate who enterd in L12 1AA, it would still say 'yes' but it should say 'no'. L1 should be true and L12 should be false. Also to mix things up a bit. I have now been asked to creat a third 'if',if a user enters a code of JE (and then any suffix after ie. 1, 2, 3, 4 etc.), could this be made to say 'unavailable' or some sort.

View 10 Replies


ADVERTISEMENT

Resolved Checking For Last Loop In Array

Feb 19, 2011

outputs lines of text, with two <br> between them. What I want is for if it's the last loop for that only to be one <br> but I can't figure out what that "last loop" code should be.

View 2 Replies View Related

Resolved Google Maps API V3 - Generate Markers From Array?

Aug 24, 2009

I pulled this code from Google's example section to make markers on a v3 Google Maps API (I have added my own lat/long points and corresponding event listeners, of course, but this is still the spirit of the code):

[Code]...

It's not throwing up any errors in Firefox's developer or in IE but there it sits, a blank map. I'm sure this isn't clean or optimized code, but it looks correct to me. I've color-coded the code above to show what "for" loops are being used to try to replace which code. Hopefully that makes this more sensible.

View 6 Replies View Related

Resolved Can't Remove Previous Select Options From A Dynamic Array?

Jul 31, 2009

I'm using ajax to update options in several select forms.Its basically, like in most automotive applications, there is a drop down for brand...once selected, it will populate another select form with the "makes" of that brand. Once a make is selected.. it returns the models of that make... and ect...The program works fine for one selection. When one brand is selected, a second select box is populated with the correct makes of cars that brand produces, however, if the brand is changed, the select box with the makes of the cars is populated by the original query..twice... and then the second query. Looking for help on whats the best way to clear both the results array; i was using this...

autobrandsf.length = 0;

and also clear out the select box, which is what the removeAllOptions() function is for. As it stands, if i use the removeAllOptions(), the makes are never populated.Here is my code, broken down the best i could, in order of process.. ish.A select form that shows the brands is displayed, once a choice is made, it passes the value of the choice into this function, which will query the database

// this is the function that is called once a brand is selected:
// h = the brand passed..
function carBrandCheck(h){[code]....

This is where, the query is returned, each row is split into an individual array, and then the second element of those individual arrays are put into yet again another array.The elements of that array are then compared against eachother to make sure there are no duplicates, storing the non-duplicates into a new array. The final array is then passed into a select form, for the makes of the selected brand.

// the ajax handler:
function handleWorkResponse(){
if(xmlHttp.readyState == 4){[code]......

View 3 Replies View Related

Two Not Equal Comparisons In An OR Condition?

Nov 5, 2009

Could anyone tell me (or link me to some place that can) why the following if-statement will execute?

if (5!=6 || 7!=8) {
alert("Why does this work?");
}

View 2 Replies View Related

Date Comparisons Not Taking The Year Into Consideration

Aug 29, 2005

I am having problems while sorting my report on the date column.

It sorts on the day and month but does not sort on the Year

for ex.
if I sort on the date i get the following results: (mm/dd/yyyy)
01/03/2004
01/04/2004
01/05/2003
01/06/2003
01/07/2004

View 2 Replies View Related

Does Order Of Logic Comparisons Affect Speed In The Same Statement

Mar 18, 2010

was wondering if it made sense to optimize the comparison order inside an if() statement if one of the comparison targets is a function call eg:

var a = true,
b = function() {return false;};
if (b() || a) {...}
if (a || b()) {...}

would the second statement run faster because it would theoretically never need to call b() in this situation? can the eval order be relied on? does this depend on the js engine/internal optimizations?

View 2 Replies View Related

Getting Numbers In Function That Shouldn't?

Nov 29, 2010

Basically I'm going through and renaming div id's, etc to manipulate later in functions.I'm using jQuery's detach() which is working but for some reason my while (now for loops) are not working and providing me with bogus numbers.

Code:
var arrayFights=[0,1,2,3,4,5,6,7,8];
var counter = theBox; //where to start in the array
//first change numbers larger than counter
for(i=1;i<fights;i++){
arrayFights[counter] = i;
counter++;

[Code]...

View 2 Replies View Related

<DIV> Being Hidden - And Then Quickly 'unhiding' Itself When It Shouldn't Be

Jun 13, 2009

This is a really strange problem i noticed today when adding the last screen into my DHTML app. When i click on a button to hide all of the existing <DIV> tags, and to display the one that i want to currently use. It is doing this, but for some reason or another, it is only being shown for a brief second. and then going back to the main screen. I think this is very strange because there is no event present that should be triggering this to happen. There's not even any code to 'fall through' and inadvertently trigger this, as everything is in different functions.

So here's my code:

The first Javascript file (controls the visibility and hidden aspects of all the <DIV>s)

I also attatched the HTML and the 2 JavaScript files to this message.

View 9 Replies View Related

Shouldn't This Function Accept Multiple Parameters?

Jun 19, 2011

I'm probably missing something simple here. I have this function called display:

function display(name3,office3,officePH3,mobile3,email3)
{
document.getElementById('viewer').src=('Location_Files/')+(office3)+('.htm')
}

It's supposed to take 5 values and do various things with them. When I only had one parameter it worked fine, it took an office number which was the value of a listbox option and turned it into a path and then pointed an iframe to that path. Then I changed it so the value of the listbox option was 5 parameters separated by commas. Here's the listbox now:

<select onchange="display(this.value)" multiple="multiple" id="People" name="People" style="border-style: none; height:260px; width:220px;">
<option value="test name,1656,phone,NONE,email">Loading</option>
</select>

You can see display is executed as "display(this.value)" so in theory it should take "test name,1656,phone,NONE,email" as its parameters and it should accept 1656 as the "office3" parameter. For some reason it's not working out that way, the function executes and the iframe changes but I get an unable to display webpage message like the path is broken. Can anyone see what I'm doing wrong?

View 2 Replies View Related

Popup Menu Disappears Onmouseover When It Shouldn't

Mar 16, 2010

On some pc's in IE my website shows disbehaviour with the popup-menu. When your mousepointer hoovers over the transparent border, the popupmenu disappears. Please check URL.... Perhaps if you visit the website with Internet Explorer you can see what I mean, but it might be showing good as well.The menu is made with very little javascript and mainly CSS. I discovered the begin of the cause: when I don't use a transparent color for the border, it works fine. Also when I remove the underlying image (the sky-image) and still use transparent color it also works fine. How can this be? Using Z-index for the popup-window/menu and give it a real high number won't work. I really don't see it. Ofcourse I want to keep using the transparent color and the underlying image.[code]

View 1 Replies View Related

Make A Program That Passes An Array To A Method - Getting An Error Saying: "error: Number Cannot Be Resolved To A Variable"?

Sep 14, 2011

im trying to make a program that passes an array to a method. the method then finds the smallest number in the array and passes that number back to the main where its printed out. I am getting an error saying: "error: number cannot be resolved to a variable". I am using drjava. here is my code.

import java.util.*;
public class homeWorkTwo{
public static void main(String[] args)[code].....

View 6 Replies View Related

Onclick Handler Firing Multiple Times When It Shouldn't?

Jul 23, 2005

I have a web page that tracks clicks on certain hyperlinks. I am using
attachEvent() to attach to the document onClick handler, for IE browsers.
It works fine, except that for about 1 out of every 6 clicks, I get 2 to 4
click events for a single click. I know this because each time the
hyperlink is clicked, I write a record to a MySQL database. I write the
record to the database by setting the SRC property of an IFRAME on the page,
to a tracking script.

If I look at the database, for 1 out of every 6 clicks, I see 2 to 4 records
for the same click event (occassionally as many as 6 records). They are at
least 1 second and at most 7 seconds apart from each other.

View 4 Replies View Related

One Grid Displays Numbers, True Or False And Yes Or No, And The Other Grid Displays Letters, True, False, Yes And No?

Feb 15, 2012

I have two grids, they both display buttons. One grid displays numbers, true or false and yes or no, and the other grid displays letters, true, false, yes and no.

The second grid is not displayed in the code (used css to not display second grid buttons (.answerBtns)) Now using the getButtons() function, if the user selects button "1" in first grid (the grid which you have to open using (Open Grid) link, then it should display button "A" in second grid, if user selects button "2" in first grid, then it should displays buttons "A" and "B" in second grid, if "3" then display "A", "B" and "C" and so on.

Now except using if statements and stating which buttons should be displayed and not displayed depending on the button chosen in first grid, is there a more efficent way of coding this so that the display of buttons in second grid depends on what is selected in the first grid?

If it is using an array can somebody show a sample of this in their answer. You can just do it for one example and then I should be able to use that to fill it for the other buttons.

View 1 Replies View Related

Resolved Custom Pop Up Box

Aug 8, 2010

I am looking for a custom pop up box, but there is only 3 kinds (Alert, Confirm, Prompt). Neither of those will work.

View 13 Replies View Related

Resolved Change SelectedIndex IE Bug

Jun 19, 2009

why does this work under FF and only ONCE in IE but the problem remains the same as the firefox only code crashed IE's javascript.so it works only once still.SOLUTION -> changed event from onchange to onclick for my checkbox calling that function !

View 4 Replies View Related

Resolved Hiding A Div When Turned Off?

Dec 16, 2009

I am trying to make an order form I am working on accessible for users who have javascript turned off in their browser, and to do this I would like to hide a div if JS is disabled.

Searching the Web has led me to think that styling the div to not display is the way forward and then using JS to display it. It is the JS bit I am struggling with! The div in question is a set of radio buttons to allow a purchaser to choose how many gift memberships they want to buy:

<div id="giftmember-buttons" style="display:none";>
<h2 class="threepeaksform">How many gift memberships do you wish to purchase?</h2>
<fieldset class="threepeaksform">
<legend>Please select the number of people you are buying a gift membership for using the buttons below.</legend>
<div class="generalcontactform-group">

[Code]...

View 3 Replies View Related

Resolved Taking A Part Of All URL Value?

Mar 10, 2010

I have youtube link saved as a variable with value:[URL]... And I need to get a part of this link which I could use later:

The part would be oOzuBOefL8I It would be great to do it with javascript... Because I have url generated like this one:

httpObject.open("GET", "../talpinimas.php?id=reklama&paveikslelis="
+document.getElementById('paveikslelis').value+"&pavadinimas="
+document.getElementById('pavadinimas').value+"&url1="
+document.getElementById('url1').value+"&url1name="
+document.getElementById('url1name').value+"&komentaras="

[Code]...

View 9 Replies View Related

Resolved Autoscroll Div Up/down Loop?

Jun 22, 2010

What I'm trying to do just doesn't seem like it should be that difficult but I'm sure struggling with lacking skills I should say. I'm trying to automatically scroll a div up and down. For say if div.scrollTop = 0 then scroll to the bottom once it reaches the bottom scroll back up and so forth not stopping in a loop with say a timeout of 10.. Just need help putting it all together.

I've figured some stuff out:
I can tell if I'm at the bottom of the scrollable area with:
(document.getElementById(id).clientHeight + document.getElementById(id).scrollTop) - document.getElementById(id).scrollHeight

[Code]...

View 3 Replies View Related

Resolved Get Value Check It And Do Something Conditional

Sep 13, 2011

I'm trying to create a test using Javascript. Actually, I did this in PHP, but we need to put it a server that does nor run it, I think I can convert it to Javascript. I hope it'll be work as in PHP somehow. Test will be composed of 15 questions and each question has either "Yes" or "No" as answer. And, I use radio buttons here for answers. By the way, there will be more than one radio groups. Now, I want to check the value of clicked radio button in each group and use an if-statement to determine if it's correct. And, if it's correct, I want to increment a variable by 1. Finally, by the resulted variable incremented for each question in the test, I want to use another if-statement to show specific result message for and interval of that variable.

[Code]...

View 4 Replies View Related

[RESOLVED] Toggle With Mouseover

Mar 11, 2011

I'm new to javascript, and i'm having a problem. I want a button, which functions as a toggle, but also as a mouseover. When you click, under the button, a div opens with text. And when you mouse over, a shadow appears behind the button.I have two pieces of javascript, but i want both in my button. Can anybody help me?

[URL]

View 1 Replies View Related

Resolved Trying To Add Watch Method To IE

Feb 28, 2009

I'm trying to add watch() to IE, and have more or less working code:[code]That works until I try to use setInterval with the code in red color. I never really tried OOP or prototyping in JS, so my whole approach to the problem might be wrong, but anyway, I think that if I execute that code in red every 100ms [for example], I'll be able to catch changes to properties on which the method is registered. Well, either my idea is wrong, or the execution.Some parts are commented out and method name is changed so that I could work in peace in FF.

View 3 Replies View Related

Resolved Need Lightbox With 3 Lines In Caption

Jun 5, 2009

I'm looking for a lightbox that allows me to have 3 lines of captions. Line one would be the art title, line two would be art dimensions, and line three would be media used. Would someone point me in the right direction? I have a lightbox that supports multiple lines, but doesn't allow for line breaks in the caption.

View 6 Replies View Related

Resolved Having Generating Random Text?

Aug 9, 2009

New to JS, and not too good at it. Trying to take some prewritten code and add script that displays some random text. Having trouble with assignment. Instructions are to replace a section of the file I am given with a script element. In the script element I am suppose to declare a variable named tipNum equal to a random integer between 1 and 10 returned by the randInt() function (which I made and have shown below). Then I am suppose to use a series of document.write() methods to write the following HTML code into the page:

<h1>Random Tip<br />title</h1>
<p>tip</p>

(Where "title" is the title of the random text as generated by the tipTitle() function from a external file, and which I did not make; and "tip" is the text of the random tip as genereated by the tipText() function, which is also from the external file, and not made by me) My code for the randInt() function is

function randInt(lower, upper) {
var size = ++(upper - lower);
var randValue = Math.floor(lower + size*Math.random());
}

The script I made to display the HTML code is

[Code]...

I am getting nothing on my page where the random text should be.

View 7 Replies View Related

Resolved Changing Site Style?

May 23, 2010

How can I use javascript to change the CSS the page uses? I'm a noob to javascript so please help me out =D

View 7 Replies View Related

Resolved Grouping Radio Buttons Within A Div?

Sep 22, 2010

I have a form with multiple Divs containing radios, text etc. What I'm trying to do is write a function that will validate all radios only within a specified Div (in the code example below, Div4). I need to validate if all the radios in the div have "no" selected, or button[1]. If any have yes selected, then nothing happens. Only if all have No selected do I need something to happen.

Assigning radios to groups for validation is something I've done on a global (all of form) scale, but I can't figure how to be explicit to a div. The code below works, but only on individual radios, not groups. I've included a few buttons outside the div for effect. Oh, and the final product won't have alerts, it will be used to trigger a hidden div elsewhere in the form.

[Code]...

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved