Declaring/Initializing Variables Inside Or Outside A Loop?

Apr 30, 2007

I've always wonder if there is diference when declaring and
initializing a varible inside/outside a loop.

What's a better practice?
Declaring and initializing variables inside a loop routine, like this:

for(var i=0; i<list; i++)
{
var name = list[i];
}

or outside a loop routine, like this:

var i;
var name;

for (i=0; i<list; i++)
{
name = list[i];
}

or are both the same....

As a programmer, i always try to practice good programming. I always
thought that by declaring and initializing the variable inside the
loop, i was creating a new memory space every time instead of just 1
time...

What do you think?

View 8 Replies


ADVERTISEMENT

Initializing X Amount Of Variables?

Jul 19, 2010

This is probably a really simple question. Is it possible to initialize x amount of variables. Like someone enters 10 into an input box and it makes 10 variables called variable1, variable2, variable3, etc.How would you name them?variable + num = 0; ?

View 2 Replies View Related

JQuery :: Update Initializing Variables Onclick And Re-run The Script

May 2, 2010

I run a carousel plugin which has initializing variables on my index page, which looks like:

Now what i need is an onclick event which tells the script to update the variable 'start' to '500' and then re-run the script without a complete page reloading....

View 1 Replies View Related

JQuery :: Initializing Data Method Variables On Server Side?

Feb 8, 2010

You can use JQuery's data method (e.g. $('#MyID').data('MyVar', 'MyValue');) to easily store/retrieve information.

However, I was wondering if it is possible for my PHP generated page to add HTML tags that initialize the JQuery's data method variables. Regularly, I want server side variables to be accessible client side. It would be very helpful if I could initialize data method variables during PHP page generation.

If this is not possible, are there any suggestions on how to efficiently communicate server side variables to client side?

View 3 Replies View Related

Difference Between Declaring Var Inside Function And Outside?

Aug 21, 2010

I worked on a simple image slide-show with javascript, and I assigned a value to a var outside of a function using getElementById() like this:

Code:
window.onload = initLinks;
myImg = new Array("images/img01.jpg","images/img02.jpg","images/img03.jpg","images/img04.jpg");
curPic = 0;[code]..........

View 2 Replies View Related

Declaring Variables Within HTML - Save The Input And Pass It Into The URLs That Are The Option Values?

Mar 15, 2011

Trying to build a little tool here..

<html>
<body>
Artist ID: <input type=TEXT id=ArtistID name= ArtistID value="Artist ID">[code]....

I'm trying to save the input and pass it into the URLs that are the option values. So Artist ID being 111 would take you to url..../<WHATEVER OPTION YOU CHOSE FROM DROP DOWN>/111
What am I doing wrong/What am I not doing?

View 14 Replies View Related

Send A Loop Variable (i) To A Function Inside The Loop

Aug 4, 2011

I'm looking to send a loop variable (i) to a function inside the loop, but I can't seem to get it to use the value I want, it keeps making it a reference of i and therefore the function is always called using the last value of i rather than the one it was set with.

So if i have 5 Tabs then Tab 1, when clicked, should call DefaultTabClick(0) and so on rather than always using 4 for any of the tabs.

View 2 Replies View Related

How Can I Create These Variables In A For Loop?

Dec 11, 2005

What about if I had something like this where a for loop creates all the variables for you...rather than having to write them out on individual lines like so:

for(i = 0; i < myForm.elements.length; i++) {
tempControl = myForm[i];
var e = tempControl.name;
var [e] = document.myForm[e].value;
}

As oppose too:

bodyChooseColour = document.myForm.bodyChooseColour.value;
bodyChooseFont = document.myForm.bodyChooseFont.value;
bodyChooseFontSize = document.myForm.bodyChooseFontSize.value;
bodyChooseFontColour = document.myForm.bodyChooseFontColour.value;

etc...

However, the for loop does not work...Firefox JavaScript console reports 'Missing variable name' pointing to the 'e'.

View 2 Replies View Related

Preload Images Using Variables In A Loop

Jul 28, 2005

I want to create a javascript function which preloads a few images.

The function preloadImages should receive a variable which indicates the web site current culture.

If culture = "pt-PT" then should use arrayptPT
If culture = "en-GB" then should use arrayenGB
and so on...

Then all images of the array should be loaded using a For loop.

All the images in the array are in path: images/ culture value /.

So the ideal would be to have only the image filenames in the arrays.

Then the loop would go throught the right culture array and load all the images there from folder images/ culture value /...

View 1 Replies View Related

JQuery :: If Else Statement Inside Each Loop

Aug 3, 2010

I'm currently trying to produce an HTML table from an XML feed, using jQuery. And this works great! With an "each" loop, there now is a nice table on my screen, displaying the right information from the feed.

I would like for each new row of this table to have a separate color. For example:
row 1 - blue
row 2 - green
row 3 - blue again
row 4 - green again
...
and so on...

What I've tried, is putting something like this inside the loop:
var
x=0
(this line should probably be outside of the loop, but that doesn't seem to work)
if
(x=0)
code 1...
x=x+1
else
code 2...
x=x-1
But this doesn't work.

View 2 Replies View Related

Make An Array Inside A Loop?

Feb 10, 2011

I have this loop:

for (var j = 0; j < gmarkers.length; j++) {
gmarkers[j].hide();
elabels[j].hide();
map.closeInfoWindow();

[Code]....

which was useful for passing the p variable when it was just one number.

but now I need to get that number every time j gets set (I understand that the j gets overwritten each time the loop goes through).

What would be ideal is if p could become an array, the contents of which match the values that j has passed though during the loop cycle.

I thought var p = new Array (j); minght do the trick, but obviously not...

View 4 Replies View Related

Ajax :: Using To Implement Php Inside Of Loop?

May 7, 2010

I have a theoretical question, I can't really post my code. But I have four results from reads to a database using php. I then read from an xml file using javascript using a loop. I am basically creating a chart of four variables with several different values for each variable. Some of the values for each variables come from the database using php, and some come straight off the XML file parsing done by the javascript. I initially had the php fetch/extract inside of the javascript loop, but it only assigned the first variables values to all the other variables. I discovered (after hours of googling) the difference between client side and server side code. So, after all this typing, my question is where should I look for tutorials on using Ajax to be able to use php code inside of a javascript loop? (If at all possible)

View 2 Replies View Related

Call A Function Inside A Loop?

Dec 27, 2010

I want to call a function inside a loop of an array but when I run it, it is only reaching the function the first time.

for (i in qMedia) {
writeMedia(qMedia[i].name, qMedia[i].format);
}

Even when I tried to call it outside the loop multiple times, it only executed once.

writeMedia(qMedia[0].name, qMedia[0].format);
writeMedia(qMedia[1].name, qMedia[1].format);
writeMedia(qMedia[2].name, qMedia[2].format);

I know that each of the objects in the array have data because I tried to run each one of the lines above separately without calling the other two and it worked fine.

View 2 Replies View Related

JQuery :: Using Variables Inside Selectors?

Jul 15, 2010

there,is possible to do some math in this type of selector:

$( ' li:eq (0) ' ) like this $( ' li:eq (some variable + 1 ' )

View 2 Replies View Related

Accessing Variables Inside A Function?

Sep 19, 2010

I've attached a cut-down version of a script I am working on. It's a pretty simple button with a function attached, which creates a random number and compares it with a preset value.I can't seem to get the function to read the variables

Code:
#<html header>
<script language="javascript" type="text/javascript">

[code]....

View 7 Replies View Related

Store JS Variables Inside A Database?

Aug 12, 2011

we have a list of names, generated by parsing an array JS source file.The site and the main page is ASP, linked to a Database.Is there a way to store the JS-generated text, inside the Database?To be more clear:Code:

<!-- excerpt from mypage.asp -->
<script type="text/javascript">
// VariableNames are an array result, but here we list a simple example:

[code]....

View 1 Replies View Related

JQuery :: Live Handler Does Not Pop When Inside Each Loop

Jul 2, 2011

[code]I am baffled by the fact that the second alert does not pop up URL...

View 1 Replies View Related

Onmouseover Function Inside For Loop Not Working?

Apr 3, 2010

I have a simple HTML page with one DIV element with the id "rotator". Inside that, JavaScript is supposed to create boxes that react to mouseovers.

The weird thing is: The whole script works, but ONLY on the LAST box I create, no matter what I do. I can manually add the mouseover code to any one of these boxes, but it will only take on the last one. I can have JavaScript tell me the mouseover status of each box, and they all tell me they have code assigned correctly - but again only the last one works...

Here's the relevant code (yes, highly abbreviated, but it's the part that fails on me):

var maxBoxes = 10;
function initSite() {
var rotator = document.getElementById("rotator");
rotator.innerHTML = "";

[Code]....

initSite is called in the body onload. All kinds of other animation parts are implemented that work fine, just this mouseover won't work. I have tried re-writing it in multiple different ways, including "xyz.onmouseover = myMouseCode" and then defining the function separately later - still no dice.

So, the code creates 10 boxes (0-9) and 10 boxes that are on top of them to create a form of shadow effect depending on the position of the original boxes. Since the "myDark" boxes are on top of the "myBox" boxes, I apply the onmouseover onto the "myDark" boxes, but it only works on "myDark9" and no other box. They are all created the same way, the mouseover assigned the same way...

View 8 Replies View Related

Call Script Function Inside A For Loop?

Apr 26, 2010

I'd like to ask how can i ask for a function inside a for loop , if i remove the loop the code works fine but i need it for 10 rows .here is the code...

View 3 Replies View Related

For Loop - Looks Inside The Parenthesis - Assigns Count A Value Of 1

Feb 18, 2010

I am trying to understand the order of operations of a for loop.

for (count=1;count<3;++count)
{
document.write(count + ". nice rack.")
}

when this runs it prints:

1. nice rack.
2. nice rack.

I dont understand how it prints 1. The way I see it it sees the for looks inside the parenthesis, assigns count a value of 1, goes to the comparison sees that it is less than 3, then gets incremented by 1 at the next station, and then finally goes in the curly brackets and the string is written. So if it starts with 1, is less than 3, and is increased by 1. before it starts the loop, then the first sentence would read:

View 5 Replies View Related

JQuery :: Calling A Program Using $.getJSON() Inside Of A For Loop

Dec 28, 2010

I am calling a program using $.getJSON() inside of a for loop. The problem is that the second callback doesn't wait for the first program to finish before it executes. Is it possible to ensure that the second iteration of the loop doesn't happen until the first one is finished?

$('#dialog-form').dialog({
buttons: {
"Import": function() {
var ids = $("#itemsGrid").jqGrid('getGridParam','selarrrow');

[Code].....

View 1 Replies View Related

JQuery :: Check If An Element Has Just Been Hidden (inside A Loop)?

May 28, 2011

I have this piece of code:

$('.selectorheader').siblings('div').hide();
$('.selectorheader').click(function(){
$(this).siblings('div').each(function(){

[code]....

View 3 Replies View Related

JQuery :: Infinite Loop Inside (string).text()

Apr 26, 2010

The following sentence makes jQuery hang up: $(":( We'll this activated :D").text()

View 4 Replies View Related

JQuery :: Setting Object Property Inside Each Loop?

Aug 10, 2010

Trying to add a new property to a non-jQuery object from inside each loop doesn't appear to work:
var arguments=new Object();
arguments['ticket']=ticket;
arguments['email']=email;
arguments['module']=module;
arguments['epoch']=new Date().getTime();

var total=0;
$('select.category').each(function(){
var name=$(this).attr('id');
var option=$(this).find('option:selected').val();
total+=parseInt(option);
arguments[name]=option;
});

The 'total' variable works as expected. The the 'arguments' variable doesn't. Almost like
a variable scope issue or something. If I put some extra debug code to print out all the
property/value pairs, outside each loop I only see original four, and inside each loop only
the new one just set and none of the original four.?

View 2 Replies View Related

Swapping Out Tag Info With Onclick Dynamically Inside A Php Loop?

Sep 4, 2010

Below is the code.

My function:
function swap_content(id1,id2)
{
var tmp = document.getElementById(id1).name;
var theval = document.getElementsByName('primary_propertyp_id')[0].value;
document.getElementById(id1).name =

[Code]...

This is running through a PHP loop so it's making multiple divs and links for the secondaries. I am wanting to be able to swap out any of them to make them 'primary' this works for the first click, but after the first click it makes every div id and input name the same as the first that was clicked. It's also not working AT all if i click on the bottom link first, then a link above it. Top-down works, bottom-up doesn't..

View 1 Replies View Related

JQuery :: Cycle Plugin - Prev/Nex Inside Loop Container

Jun 3, 2009

I tried to use Cycle Plugin, and it works great. I have the "Previous and Next" navigation work without any problem.

This is the code I have:

View 1 Replies View Related







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