var is a keyword in a number of programming languages.

learn more… | top users | synonyms

-2
votes
1answer
39 views

The point of using 'var' when code works without its use? [duplicate]

Why do we use the keyword: 'var' when the code works very well without using it. JavaScript: window.onload = compare; function compare() { cool = "45"; alert(cool +1) // I can ...
2
votes
1answer
75 views

Convert 'var' type in dictionary

I have one code in C# 3.5. I want to know what is the type of postActivity. I know this is a dictionary type, but I can't find the exact type. This is my code. var postActivity = new[] { ...
1
vote
2answers
60 views

one Javascript Var for multiple HTML ID's. Is it possible?

I have 1 form, for the user input, which fills out 3 forms dynamically using javascript. on the same page each 3 forms, have 1) a PREVIEW option, with a watermark 2) a PDF option ...
0
votes
0answers
10 views

Custom InstallAnywhere location for .com.zerog.registry.xml file on linux

I'm running into an issue where I do not have write access to the /var directory on a UNIX environment, and InstallAnywhere doesn't provide me the option of writing the .com.zerog.registry.xml to any ...
1
vote
2answers
37 views

Binary writing (var/object)

In my program, I will get a var object at run time and I would like to write it to a binary file, but I couldn't write var variable by using BinaryWriter. It gives a compile error that cannot convert ...
0
votes
1answer
22 views

Unable to retrieve Dictionary value when used in LINQ

I am trying to update a 'Name' DataColumn based on a 'ID' DataColumn in a DataTable. The 'ID'-'Name' pairs are stored in a Dictionary, which is created using a DataTable extension method as follows: ...
0
votes
1answer
21 views

cakePHP assigning var from function/method

All, Here is my code: class ManImportsController extends AppController { public $uppath; var $name = 'ManImports'; var $uses = array ('RFupload','ManImport'); var ...
0
votes
1answer
13 views

replace constant in jquery instruction line

I have a select listbox and I want to select one of the list values when I load the page. I'm using the following approach and it works: $("#mySelect").find("option[value=3]").attr("selected",true); ...
2
votes
2answers
43 views

Assigning a constant cast to a var in C#

How smart is the C# compiler, given the following: float a = 1; //A var b = 1f; //B var c = (float)1; //C - Is this line equivalent to A and B? var d = Convert.ToSingle(1); //D - Is this line ...
1
vote
4answers
58 views

Javascript begginer how to use var properly

I just started learning Javascript on codecademy and don't know what is the problem with this code. var feedback = prompt("Rate this game out of 10"); if(feedback > 8) { console.log("This is ...
0
votes
0answers
44 views

Switch HEX value with Colour name, to store colour choice as VAR. Flash as3

I am creating a customisation app in Flash Pro CS5, and I has variables set up to record the changes to options. The following code is in the topmost layer on the stage. //Clothes Variables var ...
0
votes
1answer
36 views

Submit form and return result to same page with javascript

Im trying to write a small js script that will let a user input a string of text and then output it wrapped in some html to the page. I know how to do this with php, but it seems a little bit of an ...
1
vote
2answers
41 views

Nodejs retrieve a variable

I would like to retrieve the variable "users" outside the function: var users; client.lrange("comptes", 0, -1, function(err, replies) { replies.forEach(function(reply, i) { users ...
0
votes
4answers
38 views

Use variable to any type and check type of this in Java?

I have serious problems when implementing a java library for use in Android. I need global variables, I've solved this by applying Singleton. But now I need to use variables without specifying the ...
0
votes
2answers
40 views

How can I create a dictionary with a-z and 0-9 up to 8 characters long and save it as a .txt file?

Me and a friend have been messing around with this, and with a good bit of research I have not been able to figure this out, granted I know nothing about c#. What we have so far is this namespace ...
0
votes
0answers
16 views

Project Android with Custom Library + Global var

I am creating a book and I'm interested in globalizing variables (objects). In one project I can do with Singletone: But if I use it in my library and give it a value, if in my project I consult the ...
1
vote
1answer
29 views

I need help using a variable to populate a table to create a Javascript scatter plot

I am trying to use this Javascript to create a scatter plot: http://www.highcharts.com/demo/scatter/gray Im using it just like it shows there and when i copy the graph with the info from the example ...
2
votes
2answers
122 views

delphi: inaccessible value on var parameter

I have this example method below procedure ReadData(var data:TDataSet) begin if Assigned(data) then data.Free; data:=TDataSet.Create(nil); .... end; ..... procedure ...
1
vote
2answers
47 views

what's the difference between using var and not using var at Javascript [duplicate]

var in_window = 'a' in window; alert(in_window); var a = 1; //a = 1; If I use var to declare a, then in_window will be true. However, If I don't use var to declare a, then in_window will be false. ...
-1
votes
0answers
7 views

Closing a standalone SWF file in PDF

I want to close a SWF file which opens as a pop up in a PDF? it allows me to use Flash vars, so if anyone can help me in that i wud be grateful.
0
votes
6answers
82 views

Usage of the C# var keyword [duplicate]

I really confused about usage var keyword in C#. I know, that var make code more easier to read, but what about speed and memory? A. var a = 100; int b = 100; int c; c = 100; B. var listA = ...
0
votes
2answers
78 views

What is /var/www/html? [closed]

I am starting to pick up PHP / MySQL, but in all the documentation I'm reading, it mentions /var/www/html as being the folder you want to install a framework such as CakePHP, or for example ...
0
votes
2answers
49 views

match() function and match variables

now i have a text-input and a php variables. $price = 200; <input type="text" name="promotion_code"> after users type in value of 'promotion_code' , without submit button , or any links. it's ...
4
votes
2answers
129 views

Get CSS url path from class name

I need to use very much images (>600) in a current web(app) project. The way I want to manage them, since I've got almost none PHP/SQL experience, is in css/less.css. I made a stylesheet called ...
0
votes
1answer
28 views

JQuery if command not working

I'm trying to make it so the color changes once the currentLetter variable gets to 34 but for some reason it just changes the color as soon as i click. var isStart = false; var letterString = ...
1
vote
4answers
60 views

Use JavaScript variable as iframe src?

I'm trying to use a JavaScript variable as the src in a <iframe>, the user will then be able to load other content by choosing scr in a menu, which changes the variable. the default src URL is ...
0
votes
1answer
64 views

VAR model: IndexError: tuple index out of range

I am trying to run a VAR algorithm with statsmodels to predict some future values and I got stuck. I have an array of values like this: php_resp_time = [349.70448833, 304.32462033000002, ...
0
votes
3answers
16 views

Why does only the first div respond to function?

I'm creating an online quiz which will consist of three different answering alternatives in three divs called #useralt. All the divs will have the same id but different content. The div with the ...
1
vote
3answers
133 views

Using javaScript variable to add css property?

I need to be able to count on how high a HTML element(div) should be... I'm using this javaScript code to count and add the CSS to my "Wrapper" div: var h=window.innerHeight; var content=920; var ...
0
votes
2answers
34 views

xcode split phone number

I need split phone number with format 05XXXXXXXX and put between "-" for example 05X-XXXXXXX I need only to put '-' sign between area code and number it self How I can do that? Thanks in advance
0
votes
0answers
21 views

sorting the VAR model coefficients according to variable names

I was wondering if one can have the coefficients of VAR model sorted according to variable names rather than lags. If you notice below, the output is sorted according to lags. ...
1
vote
4answers
39 views

Using Form Information As a Variable using Javascript and Forms

Alright, people of Stack Overflow, I have a question for you: I am in a web design class at my high school and learning ahead of the class since I already knew the first half of the class. I was asked ...
0
votes
2answers
111 views

How can I change global variables in javascript?

My html page displays a button that calls a function when it is clicked. I checked to make sure that the button works properly by displaying a message when clicked and it worked. I created this ...
-4
votes
3answers
104 views

What kind of variable in C can not be addressed?

Usually a variable 'abc' may be addressed as '&abc'. What kind of variable in c can not be addressed? Why?
0
votes
1answer
142 views

Uncaught TypeError: Cannot read property 'clientWidth' of null

I have a responsive wordpress theme. The menu is coded to hide when the screen size is bellow 740. However it only does this correctly on the home page. If I go to any other page the menu collapses ...
0
votes
2answers
42 views

Can't call a function through setTimeout

I'm trying to make a few functions to work one after the other with a waiting time of 1.5 seconds between them. NOW, when i try doing so with the same Id (Inside the "NoteList(>here<)", like 1, ...
-3
votes
1answer
50 views

ActionScript 3 code learning [closed]

What does this statement (i = 0; i++); mean in ActionScript 3 or in computer programming in general?
3
votes
1answer
152 views

VAR model with pandas + statsmodels in Python

I am an avid user of R, but recently switched to Python for a few different reasons. However, I am struggling a little to run the vector AR model in Python from statsmodels. Q#1. I get an error when ...
1
vote
4answers
44 views

A strange thing with js variables

Why does this code alerts same thing (1,2,3,4) twice?? var arr = [1,2,3]; var new_arr = arr; new_arr[new_arr.length] = 4; alert(new_arr); alert(arr);
1
vote
2answers
92 views

How to access a variable in a function from inside a jsp tag

I have the following function: <script> function assign() { var val = ""; val = document.form1.text1.value; alert(val); } I want to access the variable val's value inside jsp ...
3
votes
1answer
47 views

Implicitly typed variables initialization at compile time

when i was reading about implicitly typed variables, this question came in my mind. i couldn't find the answer on internet so decided to put it hare. suppose i declare a variable using 'var' ...
-2
votes
2answers
41 views

Iterate var names using a count with javascript

I need to write a loop that will iterate the following 2 statements 44 times. window.onload = function() { var input1 = document.getElementById("alpha1"); var input2 = ...
0
votes
3answers
73 views

Saving an input value into a variable as you type, or as soon as the input loses focus

I've been working on this issue for a while now, and every solution I've come up with "almost works." Ideally, I want to save the input value into the variable as I'm typing, so I don't have to ...
0
votes
2answers
40 views

Linux user rights www and no putty acces

I have two users named pi who is root and pizza4yu. I have set chmod 777 to /var/www how can I set that pi has full access to that folder and pizza4yu has no access ? And also I have set that pizza4yu ...
0
votes
0answers
29 views

Script for supersized slideshow image

Members :), i am using the supersized fullscreen slideshow on my homepage. The images are called within the javascript part of this slider. I am looking for a way to call the images within the html ...
0
votes
0answers
13 views

How to fadein a div as we scroll to it, increasing opacity as it comes to top

I am trying to have the images slowly showing up as we scroll to them. I mean the images are probably bound with scroll event and their opacity is improving little by little as they come to ...
0
votes
0answers
316 views

Call Images for supersized slideshow with html

so far i am using the supersized fullscreen slideshow on my homepage. The images are called within the javascript part of this slider. I am looking for a way to call the images within the html part. ...
0
votes
1answer
40 views

How to get rid of exclamation mark of script this$.text();

SAMPLE: - jsFiddle This script: var slides = []; $("ul .image").each(function() { var this$ = $(this); var obj = {}; obj.image = this$.text(); slides.push(obj); }); ...
0
votes
2answers
119 views

How does one dynamically declare variables during program execution?

I am using VS 2012. I can't figure out how to dynamically declare variables while my code is running. I am trying to write a program that pulls data for EMS dispatches off a website. The website ...
0
votes
0answers
34 views

Var overflow in JS and mongo [duplicate]

I am working in javascript and mongo. I have to store and work with very large integers e.g. pow(10,30) maybe even more. I am concerned about overflowing, does this happen in mongo or in javascript if ...

1 2 3 4 5 9