Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Assigning a function result to a variable
Old 10-08-2008, 06:41 AM Assigning a function result to a variable
pealo86's Avatar
Super Spam Talker

Posts: 876
Name: Matt Pealing
Location: England, north west
Trades: 0
I have a result that is returned from housingDivAssign () that Im trying to assign to a variable inside the function setEvent ().

However I just get the error "is not a function". Is this because Im using it inside another function?

Code:
function housingDivAssign ()
   {
      var housingDiv = document.getElementsByTagName ('div');
      
      j = 0
      for (i = 0; i < housingDiv.length; i ++)
         {
            if (housingDiv[i].className == 'housingHide')
               {
                  var housingSection = new Array ();
                  housingSection[j] = housingDiv[i];
                  alert (j + ' = ' + housingDiv[i].id);
                  j ++;
               }
         }

      return housingSection;
   }


function housingTitleAssign ()
   {
      var housingTitle = document.getElementsByTagName ('span');
      
      j = 0
      for (i = 0; i < housingTitle.length; i ++)
         {
            if ((housingTitle[i].className == 'title') || (housingTitle[i].className == 'titleTop'))
               {
                  var housingSectionTitle = new Array ();
                  housingSectionTitle[j] = housingTitle[i];
                  // alert (j + ' = ' + housingTitle[i].id);
                  j ++;
               }
         }
         
      return housingSectionTitle;
   }

function setEvent ()
         {
            /* for (i = 0; i < housingSectionTitle.length; i ++)
               {
                  alert (housingSectionTitle[i].id);
               } */
            var housing = housingDivAssign ();
            alert (housing[2].id);
         }
      
setEvent ();
__________________

Please login or register to view this content. Registration is FREE
pealo86 is offline
Reply With Quote
View Public Profile Visit pealo86's homepage!
 
 
Register now for full access!
Old 10-08-2008, 08:16 AM Re: Assigning a function result to a variable
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,383
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
It always causes a problem when you continually redefine an array inside the loop that is supposedly filling it.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 10-08-2008, 01:42 PM Re: Assigning a function result to a variable
pealo86's Avatar
Super Spam Talker

Posts: 876
Name: Matt Pealing
Location: England, north west
Trades: 0
Ahhh silly me! hehe thanks
__________________

Please login or register to view this content. Registration is FREE
pealo86 is offline
Reply With Quote
View Public Profile Visit pealo86's homepage!
 
Old 10-09-2008, 04:30 AM Re: Assigning a function result to a variable
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,383
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0

been there, still do it occasionally.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to Assigning a function result to a variable
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.32512 seconds with 12 queries