Declare Null Parameter Within Function Declaration?

Feb 13, 2009

Take a look at this example:

Code:

function foo(var1, var2=NULL){
if(var2 != NULL){
//do something
}

[Code]....

and in this scenario, var2 would have a NULL value

My question is: Is it possible to declare a null parameter within a function declaration in javascript? (as in the example)

I know this is possible with PHP, but i am having problems with this in Javascript.

View 2 Replies


ADVERTISEMENT

Script Null Parameter - It Works And Alerts 1, But That's Only If 'ifm' Is Set?

Aug 8, 2010

I'm trying to execute the following statement:

Code:
<script type='text/javascript'>
var value;
initEditor('tbMsg', true);[code]....

It works and alerts 1, but that's only if 'ifm' is set. If I were to take the above code and backspace out the i in ifm so it was fm, when I refresh my browser neither 1 or 2 gets alerted. Is this javascript's default behaviour, if so how can make it alert 2?

View 3 Replies View Related

TypeError: Error #2007: Parameter Type Must Be Non-null

Jun 8, 2010

So I'm writing an application in Adobe Air (AJAX) and I've come upon a little problem.
I've created a function to set a minimum size for the window

var check_size = function() {
if ( window.nativeWindow.width < 690 ) {
window.nativeWindow.width = 690;
}

[code]...

View 4 Replies View Related

Function Declaration

Dec 13, 2006

What is the difference between:

function setupGrid( param ){......}

and

setupGrid = function( param ){......}

Are there any advantages to doing one over the other?

View 1 Replies View Related

Possible To Declare A Default Value In A Function?

Jan 28, 2009

How do i declare a default value in a function? I have a simple function

function color_input(id,token){
if (!empty(token)){
document.getElementById(id).style.backgroundColor = '#2A2A2A';
document.getElementById(id).style.color = '#DDC58C';

[Code]....

You will notice that the #2 parameter is missing in the html call. Sometimes i don't have it to send. in PHP i would just set the functions second param like token=''

function color_input(id,token=''){}

How do i set a default param in a JS function?

View 2 Replies View Related

Use A Literal In A Function Declaration?

Jun 14, 2010

I have the following code which attaches a function to events in x number of comboboxes (x will probably always = 4, but I do not want to hard-code this). I wish to pass the value of i to the function being attached as well as the value of tempData. In other words, I want the parameters in function to be the value, not a reference variable.

In the current example, I am using the hard-coded variable ci. This I want to be replaced by a literal created when the event handler is attached (the value of the loop variable i). Also, notice that I get the filter value in the event handler (assigned to the variable ct). I would like to replace this code with the value of tempData which would also be determined when the evenet is attached (it is the same value in this case, but it keeps the onChange event from having to do this each time it runs).

var props = {
col_0: "select",
col_1: "select",

[code]....

View 6 Replies View Related

Function() Declaration - With No Name - When Does It Execute

Feb 14, 2010

I've been looking all over for an explanation of this function declaration but cant find it. what it means to have a function with no name, just declared as this. When does it execute? How does it get called?

For reference, here's the function:

View 2 Replies View Related

Declare A Default Value In A Function?

Jan 27, 2009

How do i declare a default value in a function? I have a simple function[code]...

View 5 Replies View Related

Same Function Declaration In Diff JavaScript Files

Jan 6, 2006

I have Declared same function and two diff javascript files and both files are included in HTML page and one more same function declared in HTML code too... So problem is that, which function will execute first, i mean function in either javascript or function in HTML Code?

View 2 Replies View Related

Variable Declaration - Specify Arguments When Writing A Function

May 11, 2011

If you specify arguments when writing a function should you still declare the argument variable inside the function?

example:

Code:

or

Code:

View 8 Replies View Related

JQuery :: How To Declare Global Variable (Nested Function)

Oct 20, 2010

I have a function which has a nested function in it. I need some variables in the first function to be available in the nested function. How am I supposed to declare a global variable in jquery?

View 4 Replies View Related

JQuery :: Declare Variable As Global To Move It From One Function To Another?

Jun 5, 2009

I want to declare variable as global to move it from one function to another. How I can do this in jquery?

View 2 Replies View Related

Declare A Variable Inside A Function - Returns White Space - Not Variable Value

Aug 17, 2010

I am trying to declare a variable inside a function and use it later on in my code... but it just already returns white space... i.e. not variable value. I am setting it within this function:

function show_video1(){
document.getElementById('video1').style.display="block";
var video1Name = "Education World News (Part 1)";
document.getElementById('video2').style.display="none";
document.getElementById('video3').style.display="none";
document.getElementById('video4').style.display="none";
[Code]...

and trying to call it later on with this: <script type="text/javascript">document.write(video1Name)</script> It might be worth noting that each one of my 11 videos will hace a different name.

View 13 Replies View Related

JQuery :: Call Back Function - Should The 1st Parameter Of The Get Function Be A HTML File

Jun 23, 2010

I have just started learning JQuery and have a doubt in the below code. $.get('myhtmlpage.html', myCallBack);The doubt is should the 1st parameter of the get function be a HTML file or can it be a unction name?

View 1 Replies View Related

Call Function In Script And Pass One Parameter To Function And Its Returns String Value?

Feb 15, 2012

I want to call java function in javascript.In which we pass one parameter to function and its returns String value which I want to display in alert message.

View 2 Replies View Related

Calling A Function From A Parameter Of Another Function?

Jun 29, 2009

Captions for the images are called from the parameters of the main function and delivered into a span or div tag with the appropriate id. A very important part of what needs to be in the captions is text compiled by a separate function, in the project library.I've tried this with and without curly, square and round brackets, with and without semicolons and quotes- all with varying results. Sometimes the function is called, but it appears at the very top of the page and nowhere near the proper <span> tag.

addImage(a,b,c,d);
// filename, image name and caption are in a, b and c.
// d is the variable where I need to write my other function...
addRef(t,s);
// I need to put addRef in the d parameter of addImage.

View 6 Replies View Related

Pass Function With Parameter To Another Function?

Apr 18, 2010

Is there any way to pass a function(with its parameters) to another function using a parameter?

Examples:Here is how I do it now:

function output(text){
alert(text);
}
function bla(text, func){

[code]....

View 4 Replies View Related

Function As A Function's Parameter Like SetTimeout()?

Mar 7, 2011

How can I have a function parameter in a function?

Something lke setTimeout();
setTimeout(function() {
how can I do it like this?

[code]....

View 4 Replies View Related

Boolean Function Parameter

Jul 23, 2005

I have a simple JS function that I want to return a true or false value
based on the parameter passed in. At this point of time I receive the
error "'True' is undefined". Here is my code below.

JS Function -

function ShowSpecifiedPeriod(pShowPeriod){
document.mfperformance.ShowPeriod.value = pShowPeriod
document.mfperformance.method = 'get'
document.mfperformance.action = 'composite_requestdata.asp'
document.mfperformance.submit();
}

ASP Event Handler -

onclick="ShowSpecifiedPeriod(<%If bShowPeriod = false then
Response.Write true else Response.Write false%>)"

The ASP variable bShowPeriod is set based on the hidden form field
"ShowPeriod" and the initial value is set to false.

More than likely this has to do with the boolean Parameter but I am not
sure how to handle this in JS. I have tried the following but receive
the same results.

function ShowSpecifiedPeriod(boolean pShowPeriod) - Same Error
function ShowSpecifiedPeriod(pShowPeriod boolean) - Same Error

Please let me know what I am doing wrong here.

View 2 Replies View Related

Pass XML As Parameter To JS Function?

May 25, 2010

I have an XML string which I want to pass to a java script function, where I am displaying that in different window with use of 'window.open()' method, but it is giving error.

View 6 Replies View Related

Set A Variable Name From A Function Parameter

Jul 19, 2009

Is is possible to set a variable name from a function parameter?

Kind of like this but it doesn't work!

View 8 Replies View Related

Pass A Function As A Parameter?

May 30, 2011

I'm adding buttons to my google map through a loop. I pass some parameters, and the addButtons() function creates the buttons. How can I pass the "task" for the button to the function? In the addDomListener line below, I'm now writing the function name literally, I'd like find a way with a parameter.

// The loop...
for (i=0;i<=4;i++) {
oCC = addButtons(aCtrls[i],'btnContainerChild');

[code]...

View 5 Replies View Related

Put The Value Of A Variable Into A Function Parameter

May 26, 2009

I have a JSON array data.cells that I need to iterate through to get the values out of and put the values into an onclick event listener.

Right now the variable name data.cells[i].letter is being based through the buildString function for each cell in my board, instead of the value of the variable. Same goes for the x and y variables.

View 3 Replies View Related

How To Set Default Value For Function Parameter?

Apr 21, 2007

I've been searching now for quite a while trying to look for a way to give the default value to a function argument if it's not given. For example, in php one would do the follow:

function func_name(foo = 'default') {
...
}

In the above case, if foo isn't supplied while calling for the function, then foo would default to 'default'. I have tried that in javascript, but it doesn't appear to be working, so I am wondering how should I do this in javascript?

View 17 Replies View Related

Pass A Parameter To Js Function?

Apr 7, 2010

I have a js file which will open a web site.

Code:

function openurl(url)
<a href =url>Visiting Web!</a>
}

The argument url will be from an input field in a html file.How to implement it?

View 2 Replies View Related

GetElementById Function - ID Is Null

Sep 16, 2011

Why this simple script is not working. Trying to use getElementById() but Firebug says the ID is null. I've tried troubleshooting by accessing other ID's but they all come back 'null'. Trying to add 2 classes based on an ID:
<script>
pageId = 1;
if(pageId == 1) {
//alert('This is page' + pageId);
document.getElementById('arta').setAttribute("class", "menu-on menu-a");
}
<./script>

An online example is here: [URL]. I also tried accessing the id like below but got the same result:
document.arta.setAttribute('class', 'menu-on menu-a');

View 3 Replies View Related







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