Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5954559
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T17:59:17+00:00 2026-05-22T17:59:17+00:00

I am quite new to JavaScript. I am trying to set equal heights to

  • 0

I am quite new to JavaScript. I am trying to set equal heights to some elements. I managed to do everything except moving the function outside the “addEvent” declaration.

In other words, this code works:

window.addEvent('domready', function() {  
    var elements = $$( 'div#leftcolumn div.module_menu' );  
    if( elements && elements.length > 1 ) {  
        var heights = [];  
        elements.each( function( el ) {  
            heights.push( el.getStyle('height').toInt() );  
        });
        maxHeight = Math.max.apply( Math, heights ) + "px";
        elements.each( function( el ) {
            el.setStyle('height', maxHeight );
        });
        delete(heights);  
    }
}
);

while this code does NOT work:

function matchHeight( selector ) { 
var elements = $$( selector );  
if( elements && elements.length > 1 ) {  
    var heights = [];  
    elements.each( function( el ) {  
        heights.push( el.getStyle('height').toInt() );  
    });
    maxHeight = Math.max.apply( Math, heights ) + "px";
    elements.each( function( el ) {
        el.setStyle('height', maxHeight );
    });
    delete(heights);  
  }
}
window.addEvent( 'domready', matchHeight( 'div#leftcolumn div.module_menu' ) );

I already test with simpler functions and it works, like e.g:

window.addEvent('domready', function() { alert('test'); } )

is equivalent to

function giveMessage() { alert('test'); }
window.addEvent( 'domready', giveMessage())

why is that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T17:59:18+00:00Added an answer on May 22, 2026 at 5:59 pm

    It’s because you need to remove the parenthesis; a function is an object, and you need to pass the function, not its return value. So, for your first example, you should have:

    window.addEvent('domready', function() { matchHeight('div#leftcolumn div.module_menu'); } );
    

    Instead. For your second example, it’s:

    function giveMessage() { alert('test'); }
    window.addEvent( 'domready', giveMessage)
    

    Again, you pass the object giveMessage, not the result obtained after invoking it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm quite new to Dojo, but i am trying to convert an existing javascript
i'm quite a newbie in javascript, and i'm spending some time trying to create
I'm quite new to javascript but have undertaken a task to get better aquainted
Dear experts, I am quite new to javascript and I often see coders use
Yo. I'm really quite new to this whole JavaScript business, not to mention AJAX,
Quite new to maven here so let me explain first what I am trying
I'm quite new to subject of writting stored function for mySQL database, hence i'm
Hi I am quite new to php but i have been following some tutorials
I am a quite new to web development and I am trying to do
I am trying to work out some performance problems with some JavaScript I've been

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.