Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript
|
Javascript General Javascript discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 13th, 2006, 07:18 AM
Authorized User
 
Join Date: May 2006
Posts: 40
Thanks: 0
Thanked 0 Times in 0 Posts
Default Dynamically call javascript functions

hi i have 4 functions named

func1(), func2(), func3(), func4()

The problem is it has to be called based on the number.

i tried using eval() but it is not a good way so i would like to know how to dynamically call any one of the methods if the number is passed

thanks for the help

 
Old May 13th, 2006, 07:31 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Code:
function callFunctionByIndex(index)
{
  var functions = [func0, func1, func2, func3, func4];
  return functions[index]();
}
If you don't have or want a func0 then use [--index] in the function body.

--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Howto call VBA functions using Java kotaiah Java Basics 2 June 20th, 2007 10:13 AM
Is there a way to call forms dynamically reyboy Pro VB 6 11 July 7th, 2006 09:53 PM
call functions of dll Digon Classic ASP Basics 1 December 13th, 2005 06:12 AM
How to call C# COM overloaded functions from ASP? khaledriyal C# 0 October 11th, 2005 03:13 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.