Tagged Questions
-2
votes
3answers
48 views
style input file button with JS - change text after file chosen
I have an HTML input which I am hiding because I don't like to see "Choose a file".
http://jsfiddle.net/tPTxJ/
Codes:
<a href="#" onclick="document.getElementById('userFile').click(); return ...
0
votes
3answers
52 views
what can go wrong with javascript if the attribute “type” is omitted?
what can go wrong with javascript if the attribute type is omitted ?
In other words, what can go wrong if I use the tag <script> instead of <script type="text/javascript"> ?
2
votes
2answers
36 views
Why are link and script tags not typed as elements?
I thought that every element returned from document.getElementById or document.createElement was in fact some version of a dom element, and that version could be found using typeof. However, I ...
3
votes
1answer
314 views
Javascript Error, Uncaught TypeError Property '$' of object [object Object] is not a function
I'm trying to insert a script in a Joomla module. The script is a percentage loader in JS. I'm had some issues with another js but I finally managed to solve them.
The error i'm getting is:
...
0
votes
0answers
65 views
Leaflet zoom not working for no reason
I am having a few problems with leaflet zoom for seemingly no reason.
I have written the following function.
function set_view(lat,lon,min_zoom)
{
var zoom = current_map.getZoom();
...
4
votes
1answer
215 views
Typescript Array vs any[]
In TypeScript, what is the difference between Array and any[]? Does Array refer to dynamically sized arrays (during compile-time, of course) and any[] refer to statically sized arrays passed as ...
4
votes
1answer
65 views
Javascript: what are some guidelines on how to define new data types?
Suppose you are creating the data type and expose its behavior.
Can you give some examples of when would you use:
a function & new:
// define new data type
var CustomDataType= function(){
...
2
votes
1answer
65 views
googleVis datatype conversion in R does not seems to work
I have been working with 'googleVis' and R in order to produce a Line chart using Google charts APIs.
On Google API's tutorial I found that data conversion in Javascript is used to determine if the ...
0
votes
2answers
63 views
Jquery AJAX type property
I was looking into couchdb for the first time and wannted to make an interface using jquery. When trying to send an AJAX call to the API service(it does different things depending on the method of the ...
1
vote
2answers
145 views
Validating multiple sets of radio buttons
I have a form with 29 selections of radio button pairs, each with a Yes/No selection.
The names of the selections increment like this for each set: ans1, ans2, ans3... ans29.
Each one have a value ...
1
vote
2answers
818 views
TypeError: Cannot call method “replace” of undefined
I'm trying to create a custom function for a google docs spreadsheet. I feel like this is a really simple problem, and I've quickly moved out of my depth.
Please help me. A point in the right ...
2
votes
3answers
78 views
Is it possible to store integers as keys in a javascript object?
I'm creating an index file in JSON, which I'm using as a sort-of-database index for a javascript application I'm working on.
My index will look like this:
{
"_id": "acomplex_indices.json",
...
1
vote
2answers
71 views
Default value of a type in javascript
Was wondering if there is any function in javascript that returns default value when data type is supplied.
For eg:
var defaultValue = built_in_getDefaultValue("number");
...
2
votes
4answers
91 views
How come JavaScript converts to a string when adding a string and a number?
Why is it that this code evaluates to:
10 + "10" => "1010"
"10" + 10 => "1010"
and why does it not work like this:
10 + "10" => 20 // the number comes first
"10" + 10 => "1010" // the ...
3
votes
1answer
92 views
Get the type of the HTML element from a jquery object [duplicate]
Possible Duplicate:
Get element type with jQuery
Preamble: I'm Italian, sorry for my bad English.
From an html code like this:
<input class="myElem" />
<input class="myElem" ...
0
votes
4answers
141 views
object has keys but evaluates to null
the problem is, there is no "standard function" you can write to detect if some thing "is set". for example, if it truly is a null object, then, you don't want to work with it; but, if it has keys, ...
0
votes
1answer
49 views
datatype check in prompt checkbox javascript
How do I check input from prompt box if it has a number in it in javascript??
var name=prompt("enter your name");
In this case i should not have a number in name how do I check this condition???
0
votes
2answers
32 views
How can I identify the prototype typeof?
I have 2 classes, base and child:
// base class
function circle(radius){
this.radius = radius;
return true;}
// child class
function pizza(flavour, radius){
this.radius = radius;
...
0
votes
1answer
42 views
problems with type and format out of a jQuery .map() function
I am trying to insert selections from a second data source into an Autocomplete dropdown. Both 1st and 2d source fetches are via ajax. I crafted and hard coded a JSON array that works to insert 2d ...
0
votes
2answers
65 views
getting correct type and format out of a jQuery.map() function
I hard coded the following array and I can use it to insert selections into an Autocomplete dropdown. It seems to be an array of JSON objects, though I am a JS novice and could be wrong. It works.
...
0
votes
1answer
70 views
Change Class of input element with using id [duplicate]
Possible Duplicate:
Change an element’s CSS class with JavaScript
How can I change the class of <input type="submit:> not using the id, just the class in Javascript. I have have tried ...
0
votes
3answers
71 views
Redirect to other URL if no string present [JAVASCRIPT]
In my php page there is error of "Undefined Index type". But if the same URL is opened with string e.g. mypage.php?type=abc then this error is not shown!
I want to redirect users without string i.e. ...
1
vote
3answers
79 views
Determine hyperlink to use based on browser type in HTML
I have a website which I have embedded lightview to bring up an iframe which has the Google Voice badge in it. This badge is flash based, so cannot be seen in iOS. In order to get a phone number to ...
5
votes
1answer
124 views
Javascript argument with multiple data types allowed: good practice or not?
Many times I have seen - especially in jQuery - that a function can have multiple valid data types, let's say either a string or a function. Also, in my own code I sometimes have functions which can ...
3
votes
3answers
44 views
checking the instances If they are constructed from same Constructor in javascript [duplicate]
Possible Duplicate:
Javascript type of custom object
I have a question regarding JavaScript instances.
Let us consider the following code:
function Box(col)
{
var color = col;
...
1
vote
4answers
137 views
How does Javascript know what type a variable is?
I don't know why I never asked myself that questioned the last years before, but suddenly I could not find any answer for myself or with google.
Javascript is known to have no types for variables. A ...
1
vote
3answers
227 views
difference between type=text/javascript and language=javascript
Basically this is the question. Which is the difference between these two statements:
language
<script language="javascript" src="_js/calendar/calendar.js"></script>
text/javascript
...
3
votes
6answers
68 views
Why does reference = null not affect the referenced object?
I know this works, but I don't know why or the reasoning behind why it was made to work this way:
var foo = [5, 10];
var bar = foo;
console.log(foo); //[5, 10]
console.log(bar); //[5, 10]
bar[0] = 1; ...
1
vote
1answer
86 views
How to construct a new type in Javascript? [duplicate]
Possible Duplicate:
How to “properly” create a custom object in JavaScript?
Is it possible to construct new types in Javascript? If "everything is an object", then are object ...
0
votes
2answers
56 views
javascript mixing numbers and strings in a single statement
I want to change a number to a string like this:
var i = slides.length*100;
i += '%';
el.style.height = i;
But I see that I could also do it all in one statement:
el.style.height = ...
4
votes
3answers
176 views
Functional datatypes in javascript
How do I construct functional and recursive datatypes in javascript?
I would like to be able to do something ML like:
datatype binary_node = Node of binary_node*binary_node
| ...
0
votes
5answers
540 views
How to judge a javascript variable's datatype is Array?
I have try three way in the bellow, the result is comment on the right,the diffcult is I can't different it from Object datatype.How can I get it datatype like Array or String but not Object?
var ...
2
votes
2answers
348 views
Regexp type for closure compiler
I'm currently adding type annotation to a personnal javascript module, but I'm currently stuck when trying to type function taking a regexp as a parameter, but none of the follwing tries is working :
...
5
votes
2answers
196 views
Having trouble with undefined !== undefined
I'm trying to process a complete function in an ajax call. If the value is undefined, I want cast a var as an empty string. Otherwise, I would like to capture the value into a string array.
The ...
1
vote
1answer
145 views
Are native JavaScript functions something “superglobals”-like?
Will the native JavaScript constructors/functions like Function, Object, Array always be available in any scope? Are they inherited by the global object or something like in the same level or even ...
0
votes
2answers
94 views
How does JavaScript infer instance types at runtime?
When writing JavaScript I always took for granted that adding two integers together resulted in another integer. Or that adding two strings together would result in the concatenation. But I got to ...
1
vote
4answers
375 views
Google closure: trouble type checking parameters that should be functions
I'm messing around with the type checking in google's closure compiler. The type system seems useful, if perhaps not the most sophisticated out there. I'm happy with most of the limitations, but ...
0
votes
1answer
435 views
A fixed div with Javascript to scroll when a window is too small. DOC TYPE issue
I'm working on a site where I have to use a fixed DIV for the menu.
www.atelier2architecten.nl/index2.php
I'm trying to find a way to let the fixed div scroll horizontal.
Because, when je make your ...
4
votes
1answer
247 views
Does V8 detect int variables and handle them more efficiently?
This is more about Node.JS, which uses the V8 engine. This is the JavaScript engine that is also used for Google Chrome.
I hear about V8 being really fast, not just for Node, but for browsers too. ...
0
votes
3answers
150 views
Proper Way to Return/Filter Values from AJAX'd PHP Script?
Consider the following:
<?php
//daytime_check.php
$is_daytime = false;
if ($is_daytime) {
echo '1';
} else {
echo '0';
}
?>
...
0
votes
1answer
2k views
What is a type mismatch error JavaScript IE?
What is a JavaScript type mismatch error?
And what are the likely causes?
I can't include all the code, but here is the line that gets the error.
xmlObject.onreadystatechange = null;
0
votes
2answers
139 views
setting serverside file as value for input file type with a click on button or link (javascript and/or php?)
I have a upload field where people can upload a image. I'd like to add a link next to it that says: use default
So when the user doesn't have a image to upload they can click on the link that will ...
3
votes
2answers
137 views
Why use toString() to typecheck args that you can check with typeof?
I understand why you need to use Object.prototype.toString() or String() for typechecking arrays, but isn't typeof sufficient for typechecking functions and strings? For example the polyfill on MDN ...
6
votes
3answers
220 views
Why is JavaScript bitwise OR behaving strangely?
In JavaScript, it seems:
(4294958077 | 0) == -9219
Why is it not 4294958077 ?
It suggests that there's some sort of overflow kicking in (although as I understand it a JavaScript Number type's ...
118
votes
9answers
6k views
Does “untyped” also mean “dynamically typed” in the academic CS world?
I'm reading a slide deck that states "JavaScript is untyped." This contradicted what I thought to be true so I started digging to try and learn more.
Every answer to Is JavaScript an untyped ...
0
votes
0answers
41 views
Safest way to detect native DOM element? [duplicate]
Possible Duplicate:
Javascript isDOM — How do you check if a Javascript Object is a DOM Object?
What is a safest technique for checking if an unknown variable is a native DOM element? ...
3
votes
3answers
157 views
What C# types can be accessed from ASP .net?
Let's say I have a class called ApplicationSettingsManager, and I have a String that needs referencing from Javascript on my ASP .net page, I have done the following:
...
-3
votes
1answer
272 views
Storing long text in MySQL - extracting with PHP - converting to Javascript vars [closed]
I am trying to store the text of newspaper type articles in MySQL.
Small text fields work OK for the title and image urls but longer text doesn't pop out when I use PHP to retrieve them and convert ...
0
votes
1answer
75 views
Javascript typed variables name/syntax/reference?
I am trying to find the reference on how to declare typed variables in JavaScript. I know I've seen it somwhere, but I cannot find any reference for it, nor can I remember the "correct" term for it. ...
1
vote
1answer
133 views
Javascript: Type of properties/objects
I have an object which has numerous properties in it. Now I want to access certain properties. For example, object is Car. Car has further properties which are actually objects, for example doors, ...





