Tagged Questions
0
votes
6answers
52 views
Check for specific class to execute switch statement
I'm running json calls based on a specific class in the body class To help reduce unnecessary calls on various pages.
ex:
$(function () {
if ($('body.CLASSNAME1').length == 1) {
//JSON ...
0
votes
2answers
26 views
Javascript - Different markers for different types
I'm working on customizing Google markers on a map. Upon searching for a single area, the results return a map with markers of restaurants, parks, and meetups. I'm trying to give different marker ...
-1
votes
4answers
54 views
How to Make If statement for a specific Image source? [closed]
I have this line in my program (Run in Dreamweaver) which is the following:
function go() {
if((document.test.test1.src == document.test.test2.src && document.test.test2.src == ...
0
votes
1answer
23 views
“Jump dictionaries”, switch statements, or how to do “jump dictionaries” without eval?
I like the concept of "jump dictionaries" that contain key:values, where the values are functions. I'm not sure if I should like this concept or not, though.
I want to replace a long list if if-else ...
-2
votes
5answers
49 views
Switch case with Select Option
I'm having problems to set a Switch Case with the value of a Select options, here's the code I'm using:
<form id="selectcub" name="selectcub">
<select id="cub01" name="cub01" ...
2
votes
1answer
16 views
Switching the order of multiple sets of elements with jQuery
I have a number of elements on a page which contain a header and an image, which I would like to change the order of. E.g switching the order of the img with the h2:
<section>
<img>
...
0
votes
1answer
25 views
coffeescript jQuery - how to refactor this (noob) approach?
after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
0
votes
2answers
56 views
Switch case logical expression statement in Java - versus JS or PHP
in JavaScript and also I've seen it in PHP : You can use a logical expression inside you cases :
For Example :
switch(true){
case (d<10):
document.write("Less than 10");
break;
case (d==10):
...
0
votes
1answer
53 views
Dynamic switch statement for keypress (Javascript)
I've got a website that has full width and height div's (each div is effectively a page) and you navigate through them using links and hashes; <a href="#work"></a> will scroll you to the ...
6
votes
2answers
55 views
switch-case performance in ECMAscript
I'm using switch-case statements on regular bases in ECMAscript. Beside my personal endorsement about it, there is tons of specialist literature out, about performance in this language in general and ...
0
votes
1answer
42 views
Coffeescript: unexptected then in a switch statement
I'm trying to use a simple switch statement but it doesn't compile. Here's the code:
tag = 0
switch tag
when 0 then
alert "0"
when 1 then
alert "1"
The coffeescript ...
3
votes
2answers
98 views
switch case in java by strings < 1.7
function checkValue(value) {
if (value === null || value === undefined || value === '') {
return '-';
} else {
switch (value) {
case true:
return 'Yes';
...
0
votes
7answers
83 views
JavaScript switch statment 1-100
I am trying to write a JavaScript switch where the user enters a number from 1-100 and they receive a message based on what range the number falls into. This is what I have written so far.
I am doing ...
1
vote
3answers
35 views
Why switch and if statement in Javascript treat boolean different, confused
I've got a switch and if problem in Javascript, the code is following.
var a=0;
if(a){
console.log("a is true");
} else if(!a) {
console.log("a is false");
} else {
console.log("a is not ...
0
votes
2answers
63 views
Using getElementByID.innerHTML from within a switch statements case?
Alright so first off, total Newbie here, so my questions answer might be extreemley simple because i have missed some thing critical.
I am trying to have a switch statement, switch out the innerHTML ...
1
vote
1answer
75 views
jquery case set background-image
I'm trying to set background-image property of one element depending on value of variable. It works only the first time, but when I switch to ready background image stops changing. Images themselves ...
1
vote
1answer
50 views
How to use a wildcard in switch statement
I have data returned from an ajax call: INSERT_OK_something.
I would like to use a switch statement with a wildcard like INSERT_OK_* and pass "something" like a id variable to my url.
switch (data) ...
0
votes
1answer
60 views
Changing an image in a switch statement
I have an image in my HTML, but i would like to change the image when an answer is given by the user. For some reason the first function works, but the image doesn't change.. Can someone help me ...
1
vote
2answers
67 views
How to get JavaScript within HTML to work?
I am new to javaScript, I am trying to get a function to run on button click which I have created inside an HTML file. I want the function to return the values to a the paragraph tag in the html file. ...
1
vote
2answers
63 views
What's wrong with this switch statement and jQuery?
So you can probably see what I'm trying to make. And I thought it was working fine too, but then I noticed it will just load the same 5 posts over and over again. So I tried manually adding a switch ...
0
votes
1answer
50 views
Javascript switch always default
I am working on a switch that sets 2 variables based on the value like so:
switch(_drukte) {
case "normaal":
_gradients.push("green");
_widths.push("20%");
break;
case ...
3
votes
2answers
69 views
Functions in “switch” doesn't work
I have the javascript stated bellow. I need to execute some functions instead of alert(), but it doesn't work... I need to include document.getElementById("").innerHTML="" function. I'm not very ...
0
votes
3answers
83 views
why is it recommended to use else if among switch and if in jquery [closed]
Why would be more convenient to do:
var cnt = $("#div1 p").length;
alert(cnt);
if (cnt >= 10 && cnt <= 20) alert('10');
else if (cnt >= 21 && cnt <= 30) alert('21');
...
0
votes
2answers
127 views
how to call a function from a switch statement in javascript
I'm pretty new at javascript so I might not see my problem clearly. I'm trying to create a search bar that simply searches for say, 3 different items. I've already built my function that I am trying ...
1
vote
2answers
106 views
Javascript html5 canvas random switch statement images
I'm trying to randomly select a statement with values inside them which draws from a certain point in the sprite sheet. This is the current code I have.
this.asteroid = ...
0
votes
3answers
38 views
case user.length < 4; console.log(“nametoo short :(”); break; Why doesn't this work?
I'm working on switch statements and I've been trying to make this code right here work, but it doesn't seem to output the correct console.log case string.
var user = prompt("What is your ...
1
vote
2answers
86 views
Javascript html5 canvas random switch statement
I'm trying to randomly select a statement with values inside them which draws from a certain point in the sprite sheet. This is the current code I have.
this.asteroid = ...
-3
votes
1answer
63 views
What is wrong with my switch, unexpected string/number?
I'm basically doing a generator with Javascript and jQuery for embedding videos. Now because of the large code, and possible fails everywhere, I'm simply going to link to a page and you can view the ...
-1
votes
3answers
114 views
Why does the switch statement execute a case block even when a match is not found?
switch(1){
case 1: print 1; // prints 1 (as expected)
case 2: print 2; // prints 2 (even though match is not equal?)
case 3: print 3; // prints 3 (even though match is not equal?)
}
I ...
0
votes
4answers
65 views
Switch statement and classes
var item = $(this).attr('class');
switch (item) {
case 'menu-visie active':
soundManager.play('soundLaag1');
break;
Is there a way, that i can remove the active in the case. The ...
0
votes
3answers
68 views
Using ViewBag in a switch statement
Here is the code in my controller:
public ActionResult MyMethod(string widgetId)
{
ViewBag.Widget = widgetId;
ViewData["widget"] = widgetId;
return View();
}
And ...
1
vote
1answer
281 views
Uncaught TypeError: Property 'which' of object #<Object> is not a function
This bit of code generates that error in Chrome's JavaScript console & I'm not sure why. After Googling around for people with similar issues, I haven't found any D:
The error message suggests ...
0
votes
1answer
58 views
Javascript: switch doesn't match the variable value pulled from cookie
This script should count how many times the cookie is set and do something specific when the count is 1 or 2. For some reason it won't match the 1 in the switch. I have tried doing it as a string "1" ...
1
vote
5answers
66 views
Better solution than a switch statement
Below is a function that extracts a month from an array in a loop. When a month is found the month get iterated by 1 in the object CRIMES_PER_MONTH.
This works, but it's quite an ugly solution and ...
0
votes
2answers
49 views
Use the switch statement for classes
I am new to the switch statement of javascript.
I have a big list of list items. Each item has its own class. For each list item something else should be done.
I make this switch code:
$('.nav-main ...
0
votes
4answers
58 views
Is there a clever way/trick to reuse a switch statement that does different things in the cases?
I use the same switch statement over and over, but the functionality in each case my differ.
switch(type){
case "t1":
fnA();
break;
case "t2":
fnB();
break;
...
}
...
0
votes
2answers
279 views
Change the background color of an attribute of CSS by the click of an image
I'm looking to have the background color of my content attribute fade to another color upon the user clicking a color which is an image.
I assume I am going about this all the wrong way and would be ...
0
votes
0answers
42 views
how to make a jqm toggle switch trigger a js function
a simple onclick will not do..
in jqm,
this is a working toggle switch:
<form name="BRAND" >
<select data-role="slider" name="MODEL" id="test">
<option ...
0
votes
1answer
86 views
How to shuffle multiple values in JavaScript ternary operator
I have successfully implemented multiple condition ternary operator to shuffle class between Horizontal and vertical as follows:
jquery:
<script type="text/javascript">
...
1
vote
2answers
174 views
JavaScript Switch statement: checking 2 cases at a time
I am a bit confused with the switch statement, i need it for my home page. I'll explain shortly: i have two groups of radio buttons on my html code, each consisting of three buttons. According to the ...
0
votes
0answers
76 views
Dynamic Date Function Using Switch Statement
My original question is here:
Date Update Client-Side on Static Web Page
Since posting that question yesterday, I have tried in vain to create a function that does what I need.
I began to create a ...
0
votes
4answers
175 views
Using switch statement to show pictures in javascript
I want to make the image1 visible when it is Sunday, image2 visible when it is Monday, and so on, using the switch statement in Javascript. How do i do this?
<!DOCTYPE html>
<html>
...
1
vote
5answers
141 views
Javascript switch issue with window.location-string
i am currently working on a simple ipad webapp testpiece and got stuck in a simple switch statement that doesn´t work somehow;
i want to format elements according to javascripts window.location ...
0
votes
3answers
129 views
Switch image when page refreshes using Javascript
How to switch an image when the page refreshes, using Javascript?
Let's say I have 2 images:
ImageA.jpg
ImageB.jpg
I want to switch those images at locationA and locationB when the page is ...
0
votes
1answer
54 views
count points for elements in array with javascript switch case statement
I am creating a jackpot game that generates an array based on haw many times a given image appears. and then calculates how many 0(card not used),1(different cards),2(2 same cards),3(same cards),4(4 ...
-1
votes
2answers
97 views
Is there a snippet for javascript switch statement for all the months [closed]
I'm trying to display a tabbed pane with the current month. Using Bootstrap's tab method. Wondering if anyone sees any flaws in this code? So far It's working how I want, use and test yourself.
The ...
0
votes
0answers
158 views
JQuery Advance Automatic editing form validation before form it submitted
I am trying to create a form that will allow a person to enter their weight and body fat percentage so that they will know the exact amount of fat they have on their body in pounds and their total ...
5
votes
5answers
149 views
is switch(true) {… valid javascript?
I recently came across code where a switch statement seemed reversed with the answer (boolean) in the switch and the expressions in the case. The code ran fine as intended but I'm concerned about ...
0
votes
2answers
80 views
Break for-loop and swich-case at once in JavaScript
I wonder how to break a for-loop and switch-case statement at once in JavaScript?
Normally I use something like:
foo:
for(;;)
for (;;)
break foo;
Is there a way to do the same trick with a ...
0
votes
1answer
76 views
add html to the switch statement
I have a switch statement that I am using in the drop down menus
I want to add html code in each of the cases like links,images, etc..
the header tag in the index.html
<script ...





