Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

variables

  1. T

    HTML & CSS jQuery Generated Variable Not Passing to CSS Keyframe Animation on Safari

    I have a CSS keyframe animation that uses a CSS variable as one of the animation properties. This variable is defined in jQuery. The entire animation seems to work fine in Chrome and Firefox. However, in Safari and on mobile browsers, only the portions of the animation not using the variable...
  2. SpongeBOB

    Answered Animate background-color to x transparent with Variable

    Hi everyone, I have an HTML element (fieldset) that I would look to animate the background-color transparency, from solid to 0.75 of transparency If there will be a way just to change the alpha channel that would be great.. but here what I've done so far. The background color of this fieldset...
  3. Sidddharth

    JavaScript Script to find the number from table and store the index into variable.

    Hello Everyone, I want to take input from user and on basis of the input i want to show the correct value of it. For example if user enters number 5. The correct value from the below table i.e. 1 should be displayed. Table 1 Input Value 0-5 1 6-10 2 11-15 3 16-20...
  4. fortran_cookie

    JavaScript Setting iframe src as a javascript variable

    Sorry if this is a stupid question- I have a project that displays a site in an iframe based on a text box input. I need some way to set the iframe src as a variable so that the iframe can display multiple sites. However, this does not work, and I've scoured the internet for a solution, and...
  5. H

    Problem with my var

    Hello I post this because I have some problem with my var my code look like this #include <stdio.h> #include <stdlib.h> #include <string.h> #include <SDL.h> void SDL_InitApplication(void) typedef struct { SDL_Window *window; SDL_Renderer *renderer; } App; int main(int argc, char...
  6. H

    JavaScript simple a+b does not work

    Hi, What am i doing wrong that it does not give the answer"hello world". Instead i get error message: "e is not defined" function greeting(k){ var ans=m+e; m=hello; e=world; return ans; } var i=greeting(k); print(i);
  7. C

    JavaScript How to alternate values from two variables?

    var 1 = 12345 var 2 = 67890 wanted output: 1627384950
  8. Malcolm

    C++ How do you swap variables with C++?

    Hello Coders! I'm looking for help swapping variables with C++, I know that you can use a temporary variable but you can also do it without it. Can someone show me both ways? int a = 5; int b = 10; //I want A to 10 and B to be 5. // I think I have an idea, is this correct? a=a+b; b=b-a
Back
Top Bottom