A variable is undefined if it has not been assigned a value.

learn more… | top users | synonyms

2
votes
5answers
85 views

how does 'undefined' work in Haskell

I'm curious about the 'undefined' value in Haskell. Its interesting because you can put it just about anywhere, and Haskell will be happy. The following are all a-ok [1.0, 2.0, 3.0 , undefined] ...
0
votes
1answer
36 views

Uncaught ReferenceError: [function] is not defined

I'm trying to implement Googlemaps in my Page but i'm getting into some problems surly because I'm still new with webdev. I've followed the google API tutorial on saving data to a database and ...
-1
votes
4answers
38 views

JavaScript if … undefined or specific

I want to DRY up the following code. (Leaving out the initial if block) else if (ubar_c_value === 5 ) { ubar.removeClass("min"); ubar.css("bottom","0"); $.cookie('ubar_cookie',"1"); } ...
0
votes
1answer
50 views

Undefined reference is confusing me

I have no idea why i get the reference errors and i don't understand how to fix them. I am completly new to this, so any help is apriciated. As far as i understand the rpcdce.h should contain ...
1
vote
1answer
20 views

ExtJS4 splash screen app.js returns error

I have a initially long loading app, so I tried making a splash screen. It "almost" works perfectly. I'm getting the following error: Uncaught TypeError: Cannot read property 'style' of undefined ...
0
votes
1answer
56 views

underfined input foreach php to jquery

I loop with the same name in the input I want the user to disable the javascript, the process still takes place <?php $first = 1; $id = array('id' => 'addcart'); foreach($data['info'] as ...
-10
votes
0answers
38 views

PHP Notice: Undefined offset: 1 in /var/opt/b.php on line 5 [closed]

<?php require_once 'HTTP/Request2.php'; $request = new HTTP_Request2($url = 'http://'.$argv[1].'/google', HTTP_Request2::METHOD_GET); try { $response = $request->send(); if (200 ...
0
votes
1answer
14 views

Flash object function is undefined in my JavaScript

I've an asp.net website, where i have a flash object embedded. Flash object have some functions registered via ExternalInterface, so it should be accessible from JavaScript. And they are, but only ...
-1
votes
0answers
11 views

method actionbarsherlock undefined for type activity

i have seen the problem multiple times for sliding menu on her but I'm using trying to back port an app for 4.0 with abs. now I have gotten most of the code to work but when calling ...
-1
votes
1answer
13 views

Beginning JavaScript Student Here - Rock, Paper, Scissors (parameter not defined)

This is the Rock, Paper, Scissors problem from CodeAcademy - I like to go over problem sets twice, so on this second go around, I thought I had everything down solid, but apparently do not. Thanks in ...
0
votes
1answer
24 views

Linker error undefined reference to… an included library in c

I've searched a lot for this but i can't really figure this out. My project consists of 5 .c files and 4 .h headers. all in the same folder. I compile them separately succesfully but when it comes to ...
29
votes
5answers
755 views

JavaScript null check

I've come across the following code: function (data) { if (data != null && data !== undefined) { // some code here } } I'm somewhat new to JavaScript, but, from other ...
0
votes
1answer
45 views

Submit Only One of Two toggling forms

I have two different forms which are being included in a php file. Their visibility is based on a onClick JS toggle function. The toggle works great. However if I was to fill only one of the forms out ...
0
votes
1answer
19 views

Why is window.kendo undefined in jsfiddle

H there, I have created a JSFiddle. I have linked up the following external resources: http://getfirebug.com/firebug-lite-debug.js http://cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js ...
-2
votes
0answers
23 views

The constructor Geocoder is undefined [closed]

I have the error "The constructor Geocoder(new View.OnClickListener(){}, Locale) is undefined" in this code block. I have imported android.location.Geocoder class, and I've tried to rename "this" for ...
2
votes
2answers
46 views

Copying indeterminate pointers in C

C11 standard says the following (6.2.4p2): The lifetime of an object is the portion of program execution during which storage is guaranteed to be reserved for it. An object exists, has a ...
0
votes
1answer
25 views

clang++ mac os x c++11 linker issue

I have a problem compiling a program with "-std=c++11 -stdlib=libc++" under mac os x 10.8.3 using clang++ from xcode 4.6.2. When I try to use std::mem_fn() or (deprecated) std::mem_fun_ref(), I get ...
0
votes
2answers
33 views

Calling “Click()” method of an element returns undefined, although the element definitely exists [duplicate]

I'm trying to call the click() method of a file input with a specific id, but the function call returns undefined and basically, nothing happens. I've replicated the situation here: ...
-1
votes
2answers
30 views

PHP Project undefined function session_is_registered() [closed]

**Hello every one, I had problem in run php site using Dreamweaver CS6 and wampserver.... I create site and testing server and connect to database and test it which is ok, but the problem is the pages ...
0
votes
0answers
20 views

Uncaught TypeError: Cannot call method 'substr' of undefined

So I get the error above, here's what I have done var positions = new Array(); ... positions[i]=String.fromCharCode(adding_y) + "" + String.fromCharCode(adding_x); ... if ...
0
votes
1answer
36 views

undefined reference to `strcpy_s' can't compile

i follow the book and can't compile this example. Any suggestions? Thank you in advance. 1 #define __STDC_WANT_LIB_EXT1__ 1 2 #include <string.h> 3 #include <stdio.h> 4 5 6 ...
1
vote
2answers
253 views

javascript Cannot call method 'replace' of undefined

$(document).ready(function() { var oldText, newText; $(".editable").hover( function() { $(this).addClass("editHover"); }, function() { ...
0
votes
1answer
42 views

Flash CS6 error 1120: Access of undefined property (AS3)

I'm having a bit of trouble trying to make a symbol move in flash CS6, using AS3. I used code snippets for the arrow key movement, but there it all went wrong. I always get error -> access of ...
1
vote
1answer
29 views

Why isn't “sprite” defined inside this function? [duplicate]

Fiddle in question: http://jsfiddle.net/dqDAv/2/ In line 146 I pass the object "Player" in as a parameter of sprite in the method render() Object var player = new Sprite({ 'left': ...
0
votes
2answers
26 views

Where is “sprite” defined?

Where exactly in this fiddle: (http://jsfiddle.net/wXs9J/) is "sprite" defined? I'm using the same type of animation in my own program but I get the line: "Uncaught TypeError: Cannot read property ...
2
votes
3answers
29 views

this.attribute is not defined after being constructed

Hi there I made a very small jquery plugin: $mandarina = { mainCnt: $('#main'), header: $('header.site-header'), init: function () { this.onScroll(); }, onScroll: function ...
0
votes
1answer
32 views

Cannot call method 'SaveScreenshot' of undefined - cordova

Hi this is my first post but I've been trying to use the Screenshot plugin from here: https://github.com/phonegap/phonegap-plugins/tree/88a57e1c232f604f73be5bd82868d711ac235424/Android/Screenshot And ...
0
votes
3answers
34 views

PopupView.showAtLocation is undefined for the type View

I am working on an app in which I display a ContextMenu. Now, when one of the menu items in this ContextMenu is pressed, I would like to display a PopupWindow. I have found some examples of how to use ...
0
votes
1answer
19 views

requirejs callback parameter is undefined

I'm just starting with require.js. Here's the simple code that I have in my main.js require.config({ baseUrl: '/js', }); require(['lib/jquery-min'], function(jq){ ...
1
vote
1answer
13 views

Wordpress - Advanced Category Excluder - Undefined Variable Error

Trying to use the Advanced Category Excluder plugin and everything works great except on my 404 page I'm getting all of these "Undefined variable" errors on line 446 Try it here: ...
0
votes
1answer
38 views

undefined reference to function from log4cpp library

I have another problem ... I downloaded the log4cpp library and compiled it via Microsoft Visual Studio into a .lib-file. Now I want to link that library into a QT Project, but whenever I call a ...
0
votes
0answers
17 views

Undefined method `validates_attachment_content_type' in Rails model class

Using Rails 2.3.* (legacy project, just adding some features) and I'm getting an error with the paperclip plugin. I'm not sure why it is telling me the method is undefined. Paperclip 2.4.5 is ...
0
votes
1answer
17 views

Undefined paperclip method

I am getting a method is undefined error in my Rails project. This method is used by the plugin paperclip. Can anyone tell me what I'm doing wrong? Here is the beginning of my picture class: require ...
0
votes
1answer
41 views

Javascript Array Object Property Undefined

When I attempt to access the array object (preivous_data) the console outputs this: [Object { label="line1", data=[13]}] as expected. However, when I access the array object property ...
0
votes
0answers
9 views

Template shuffle function : undefined reference to shuffle function

Header file: #ifndef DEL1 #define DEL1 #include <time.h> #include <cstdlib> using namespace::std; template<typename T> void shuffle(T a[], int size); #endif // DEL1 CPP file: ...
0
votes
1answer
50 views

JavaScript - Global variable showing as undefined

There are so many threads about this topic but I still haven't been able to find a suitable answer for my case... Here is what I'm trying to do: 1) define a function to get geocodes with Google Maps ...
0
votes
2answers
42 views

Undefined reference to “function”

So I have this very simple program but I can't seem to get rid of a simple error. I have a Header file with this #ifndef FUNCTIONLOOKUP_H_INCLUDED #define FUNCTIONLOOKUP_H_INCLUDED ...
0
votes
1answer
35 views

Javascript function returns undefined instead of object

I am a Perl coder trying to deal with a JavaScript. Trying to make an AJAX request but function always returns undefined. What is wrong with this code? How to get it to work properly? var url = ...
0
votes
2answers
34 views

Where this undefined in Express.js console is coming from?

Useless middleware for testing purposes: module.exports = function () { return function rankick(req, res, next) { if (Math.random() < 0.5) { return next('Random kick...'); ...
0
votes
0answers
9 views

Notice: Use of undefined constant � - assumed '� '

Am getting the error "Notice: Use of undefined constant  - assumed ' ' in C:\wamp\www\Marketi\php\konfirmimi.php on line 94" when I run the script I built below. I checked all over on Google and ...
0
votes
2answers
43 views

Notice: Undefined index: type // Wordpress Theme

I have spent several hours with my wordpress Theme. It is not compatible with WP version 3.4/ 3.51. When DEBUG is set to TRUE / available: Many Notifications appear. As for now I have completed all ...
1
vote
0answers
58 views

Undefined reference in single file?

So I understand that usually this error occurs when files aren't linked propely. The problem is I'm getting this from a single file, where things are being declared (no external files related to the ...
0
votes
1answer
21 views

Getting a constructor error in processing

I'm playing with processing from some days, but I encountered an error that i didn't understand. I declared the class and the constructor with the proper arguments, maybe you can help me. This is the ...
1
vote
1answer
62 views

Jquery ID selector doesnt work with a variable

I've read a billion questions like this, but never found an answer yet. Anyway, when I type var variableContainingID = "header"; var div = $("#"+variableContainingID); It returns 'undefined' But ...
1
vote
1answer
17 views

Error: `Input argument “N” is undefined`, in simple matlab program

I have this tiny program in Matlab. laMatriz.m function k = laMatriz(X) Y = 9; A = zeros(X, Y); for i=1:X V = elVector(Y); LimY = length(elVector); for ...
0
votes
2answers
23 views

A little JS help here please.. avoiding errors with undefined objects/variables (supression perhaps?)

i'm slightly annoyed at JS stopping at a simple UNDEFINED error.. I have a routine where i need to "set" variables based on what's already in the global scope targetID = myData.id; targetID = ...
1
vote
1answer
27 views

Undefined Offset 0 , how can i set this array

Hello i have an Undefined Offset 0 . inside this code. $q = mysql_query("SELECT * FROM category"); if (false === $q) { echo mysql_error(); } while ($r = mysql_fetch_row($q)) { $names[$r[0]] = ...
1
vote
3answers
41 views

Comparing undefined value in JavaScript

I have an object whose value may be undefined sometimes. So is it possible / valid / good practice to test it with an if case like below : if(params === undefined) { alert("sound." + ...
0
votes
0answers
71 views

ambitious definition C++

(I have just add some new infomation) I am so tired about definition c++. I have some source files oo.h has header gruard #define oo_DEFINE_CLASS(klas,parent) \ typedef class struct##klas *klas; \ ...
1
vote
1answer
22 views

I am using twitter bootstrap and my <img> tag is not working! Wont display

I've been trying to set up my login but keep reaching an error page that says: "NoMethodError in Static_pages#welcome" "undefined method `id' for :user:Symbol" So when I paste the following into ...

1 2 3 4 5 28