Tagged Questions
0
votes
6answers
56 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 ...
-2
votes
5answers
52 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
18 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
4answers
40 views
Switch statement in jQuery not working
I was writing a little jQuery function that changes the value of a form field when the user changes the value of a drop down list.
My function for changing the data works but for some reason it is ...
0
votes
1answer
50 views
Handling textbox .change when using JQuery UI Autocomplete widget
I have a search box with a JQuery UI autocomplete function. I want the terms entered by the user to be compared against a set of cases (see "kittens" and "puppies" in the switch statement below. See ...
2
votes
4answers
109 views
How do i do a switch case for jQuery?
I have this if-else statement which gave me weird response... whenever i select "output" first, nothing else selected afterwards can appear...
FYI, i am using multi select so i can select and show as ...
1
vote
1answer
76 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
2answers
67 views
SOLVED: JQuery: multiple switch statements cancelling eachother out
Having some trouble with more than one switch statement at a time:
$(document).ready(function(){
$('#menu').children('span').click(function(){
whichsub = $(this).attr('id');
...
0
votes
1answer
73 views
if/else jquery between three elements
alright, i am trying to make it so when you click one div it "turns off" the other two div buttons as well as making some content invisible
jquery:
var open1 = false;
var open2 = false;
...
-1
votes
1answer
44 views
jquery switch case and after(anything) stuck
I made a program, which is show/hide buttons depend on what you clicked. It is simple, but I have a big problem. I wan't to position this buttons hierarchically, first time I tried append "" tag ...
1
vote
2answers
64 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
43 views
Switching styles with jQuery, but don't change all of them
Situation: I have two style sheets, one has color info (switches depending on subfolder), the other has everything else.
I need to swap the main css for sizing buttons.
JS:
<script ...
2
votes
3answers
136 views
JQuery — I want to click a word to change it then click it again to change it back
I want users to be able to click on 'Hello!' to make it change to 'Goodbye!' and then click it again to change it back to 'Hello!'. I've got as far as making 'Hello!' change to 'Goodbye!', but I don't ...
0
votes
3answers
85 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');
...
1
vote
1answer
28 views
Looking to optimize the following JQuery code
I have 4 floated divs, when you hover over the A tag inside the divs, a div will show up at the bottom of these 4 divs which corresponds to the div where the click happenned. I have optimized the ...
-3
votes
1answer
65 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 ...
0
votes
0answers
62 views
jQuery switch color effect with parallax
can somebody tell me how to reproduce the effect on the navbar that change from black to white, when passing to the second "screen" of this website http://www.tokiolab.it ?
Thank you
1
vote
3answers
119 views
Change image repeatedly when hovering over same element
I have a div with an image, and just below there's the menu. What I need is for the image to change whenever I hover over one of the menu items. There's a total of 5 images, for now, and every time ...
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
1answer
66 views
switch case statment with window location href as my case
I am looking to use a switch case statement for my different conditions in the location href. I am trying to avoid to keep writing if statements
if (/red/.test(self.location.href)){
//do this red
...
1
vote
1answer
302 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
3answers
46 views
Most efficient way to add titles to elements with javascript/jQuery
I have some French numbers up to 24 as text in paragraph elements (some occurring more than once) on a page and I want to go through them and add the relevant English translation as a title attribute. ...
0
votes
2answers
290 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
1answer
91 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
1answer
117 views
How to Switch an li id='' sprite background using jquery
How to Switch an li id='' sprite background using jquery after a click event occurs and switch it back to its original state when clicking in another nav element that will switch to another sprite ...
0
votes
1answer
60 views
Switching different template part in wordpress on window-resize
In my wordpress template I have added my template part in header.php using wordpress function.
<?php get_template_part('desktop'); ?>
I want to add diffrent template part for different ...
0
votes
0answers
133 views
Jquery css switcher - default style flickers when page loads
Not much of a coder, still learning. Greatly will appreciate any help with the following.
I'm using Kevin Luck's css toggle switcher: http://www.kelvinluck.com/assets/jquery/styleswitch/toggle.html
...
-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
159 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 ...
1
vote
1answer
179 views
kendoui mobile listview become unclickable if grouped listview has template with <a href=“”> + switch
Hi all,
I just new in kendo ui and you may consider my question silly, but still I need to get an answer.
All code is available here: http://jsfiddle.net/Oleksii/vvCHX/27/
In my scenario I have ...
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 ...
2
votes
2answers
191 views
Javascript toggle/switch?
Is there a better way to achieve a toggle/switch then what I use. It works but it just seems clumsy to me.
var foo = true;
$(document).on("click","$element",function(){
if(foo){
//code
...
-1
votes
1answer
120 views
Using “switch” in javascript
I think I am doing something wrong, I can't copy-paste the whole code, but I have made sure nothing else in the rest of the code has any effect on this function.
(The reason I can't put it all up ...
1
vote
3answers
87 views
switch statement to select tabs
I am trying to display multiple images, on click a different text should be displayed.
I tried doing this by showing the text associated with image 1 as default, give the other images/text a display: ...
-6
votes
4answers
83 views
jquery switch html doesnt work [closed]
page html
<ul>
<li><a href="index.html?page=1">blabla</a></li>
<li><a href="index.html?page=2">blabla</a></li>
<li><a ...
2
votes
4answers
81 views
how to show only li that have a certain class using javascript / jquery?
i have a few li's:
<ul>
<li class="one"></li>
<li class="one"></li>
<li class="two"></li>
</ul>
and i am trying to show only the ones ...
0
votes
3answers
2k views
Disable/enable text field with radio button (jQuery)
thanks for the past help. I am asking you again.
I want to have 2 radio buttons, which will change the state (Enabled/Disabled) of a text input.
I managed to make it come from disabled to enabled, ...
0
votes
1answer
76 views
using .replaceWith with switch function
$(".td").click(function() {
switch (elementNode.previousSibling.id)
{
case "location"
(".td").replaceWith('<input type="text" name="location"></input>');
break;
case ...
0
votes
2answers
180 views
jQuery datepicker post to php switch to redirect page
I may be completely overdoing this, but could someone explain what have I done wrong?
jQuery:
onSelect: function(){
$.post("nav.php",function(){
...
1
vote
2answers
138 views
Switch CSS styles of two elements with link click
I have two tab buttons at the top of this webpage I'm in the middle of building. There are two styles associated with the buttons a dark blue representing unselected, and light blue mean already ...
1
vote
6answers
349 views
JavaScript switch for changing background colour with css()
I have a very simple function which should change the page background colour based on specific links being clicked, but I can't figure out why it's not working.
Here is a demo of what I have so far: ...
0
votes
1answer
592 views
Change image when pressing arrow keys
I've only been working with JavaScript, and programming in general, for about a month now and came across a problem which I just can't find a solution to. So here I am.
I've created a gallery where ...
0
votes
2answers
173 views
Switch Case vs. Conditional?
I found this post: Switch case with three parameters? and I was considering using switch case passing multiple parameters like this:
switch (array($var1, $var2, $var3)) {
case array(true, false, ...
0
votes
2answers
188 views
jQuery load( ) and switch statement not working
I have three anchor tag links in my html with id's "switcher", "switcher-b", "switcher-c", when anchor tag "switcher" is clicked I would like to load content from a html page on my server ...
1
vote
2answers
220 views
Fade out/fade in image after replacing source
I have put together a script where the main image loads once clicked on a thumbnail, however currently the image just swaps when clicking from one thumbnail image to another, I would like to have a ...
2
votes
7answers
180 views
Simplifying a switch case in JavaScript
I have a rather repetitive switch case statement and in my quest to learn the simplest way of doing things, I wanted to turn to SO and see if there is a more elegant solution to the following:
...
0
votes
1answer
57 views
jquery picture change and switch position
Hi i'm doing a sample site that has a 4 pictures, there is a default picture where it is the largest picture, when i click the 2nd picture the 2nd picture will be the one in that position and the 1st ...
2
votes
1answer
161 views
Trying to set timer on a switch with jQuery
With the help of Google (and a lot of results here at StackOverflow) my co-worker and I have managed to scrap together a "rotator". The main picture with blue buttons on the right at ...
0
votes
2answers
578 views
JQuery, check for arrow key pressed swith statement
I've setup a keydown function and I want to do different things depending on whether the left, right, up or down arrow keys are pressed. That's working using a switch statement, but I'd also like to ...
0
votes
1answer
202 views
How to make colorbox inline images, created withing colorbox tigger in view, open next image onclick
I've created some gallery in view, using colorbox trigger, which includes image, title, rate it button. Everything working, and image is link to a node. I want i work default for colorbox image ...
