The javascript-functions tag has no wiki summary.
-2
votes
1answer
68 views
javascript function in variable
Im Preety new in Javascript, I have the following function in variable:
var PushToken = {
getToken: function(types, success, fail) {
return Cordova.exec(success, fail, ...
0
votes
1answer
32 views
How Jquery scope gets passed to ready() methods callback function?
I got the following code from JQuery.noConflict() docs
<script type="text/javascript" src="other_lib.js"></script>
<script type="text/javascript" src="jquery.js"></script>
...
2
votes
2answers
71 views
Javascript function definition error [duplicate]
var add = function addnums(a,b)
{
return a+b;
}
alert("sum is " + addnums(10,20));
why can't i use addnums directly in the above Javascript ?
PS : I know other alternatives, the question is why ...
0
votes
2answers
48 views
JS Variable in jQuery ajax data
jQuery:
function myajax(var){
$.ajax({
url : 'ajax.php',
type : 'POST',
dataType : 'html',
data: {
if(undefined != var){ variable : var, }
content : $("#myinput").val()
...
0
votes
1answer
29 views
From php I create a HTML form that mult selects items in a table - I want to send the selected items with some bits of information using javascript
Need help sending data from a table in html in a php file sending to a javascript script with parameters from php
?>
<form ...
0
votes
1answer
37 views
how to call javaScript function from div
hello does anybody know how to call a JavaScript function from a div?
my div and function look like this:
@foreach(var c in Model.matrix.Cells)
{
<tr>
<td class="tdHouse" >
...
0
votes
2answers
107 views
Javascript Focus
I am using this script for i need a focus on every alert.i tried many ways but it is not working.
script:
function validateTime(obj) {
var timeValue = obj.value;
if(timeValue == "" || ...
2
votes
1answer
63 views
inject a javascript function into an Iframe
This link describes how to inject code from a script into an iframe:
function injectJS() {
var iFrameHead = window.frames["myiframe"].document.getElementsByTagName("head")[0];
var myscript = ...
0
votes
5answers
75 views
Dynamically using the return value of a JS function as the value for an input button
I want to set a JavaScript function which returns a string, and that string to be used as a value for a button. Something like this:
function test(){
x = "some text";
return x;
}
I want to use ...
0
votes
1answer
13 views
innerHtml command not working Advise please
I am a beginner in Javascript and this is my first post in Stackoverflow. I follow a book to play with some javascript functions. Here I am stocked by the innerHtml method. It supposedly should work ...
0
votes
4answers
74 views
What does this Animal = function Animal do?
I'm trying to understand this JavaScript code produced by CoffeeScript.
I'm used to seeing functions defined as:
function Animal(name) {...}
var Animal = function(name){...};
But CoffeeScript ...
3
votes
2answers
49 views
Any way to bind event handler and call it at the same time?
I have some code like the following:
var f = function() {...};
$(window).resize(f);
f();
As you can see, I'd like f to be called every time the window is resized, and also for f to be called once ...
0
votes
0answers
28 views
Multiple DISQUS threads: display all for noscript?
There is a helpful script to display multiple DISQUS threads:
https://github.com/disqus/DISQUS-API-Recipes/blob/master/html/disqus_reset.html
The problem is that you reset them so actually only one ...
2
votes
1answer
44 views
Calling a function created inside a bookmarklet
I'm trying to write a bookmarklet which adds a JSONP call into a page like this:
javascript:(function(){
var myFunction = (window.function(data){alert('my function is firing with arg' + data)});
var ...
0
votes
3answers
87 views
Javascript - define function with variable
Let's say I have the following code
var $variable = $('<li/>', {
tabindex: 0,
click: function() {
//more code in here
}
}
is it possible to define the click: with a ...
1
vote
4answers
56 views
simplifying variable.handler = function {}
I'm brushing up on my JS, and I don't know how to ask this, exactly.
I have this:
text_area.onkeyup = function() {
var text_length = this.value.length;
var text_remaining = text_max - ...
0
votes
2answers
37 views
Is it somehow possible to create a typeof-like function
I made a more accurate typeof-function and want to use it like the default typeof-operator. Currenty I call my typeOf()-function like every other function: typeOf("foo"), however is it possible to get ...
0
votes
1answer
34 views
JS console error- object not defined
I have the following JS function, which I'm using to detect whether a 'draggable' image on my HTML5 canvas is dragged on top of a static 'description box' image, also displayed on the canvas:
...
0
votes
1answer
110 views
Creating a namespace object from string to call a function?
i have a namespace object form.iso.methodName as a string and i want to call that method. I cant create namespace object like [form][iso][methodName]
split : function(ns) { // ns namespace is object
...
1
vote
1answer
39 views
Adding script to a webpage to change the contents of a paragraph when the cursor hovers over an image on HTML5 canvas
I have an HTML5 canvas which is displaying a number of images. I also have some simple HTML <p></p> tags on my page below the canvas.
I want to update the contents of the ...
1
vote
1answer
140 views
JavaScript- calling functions from within functions
I am making an HTML5 canvas based game using JavaScript. The game is just a simple one, where a number of images are displayed on the canvas, along with a number of description boxes. The user is ...
0
votes
3answers
66 views
JavaScript function call apparently not firing
I'm using an HTML5 canvas to create a simple web based game.
Currently, when my page loads, a number of images are displayed in random locations on the canvas, which the user is required to drag to ...
0
votes
0answers
45 views
Javascript prompt to hiddenfield
I am trying to get the value entered in a prompt into a hidden field so that it can be written to a database. I currenty have the following .aspx code for my button:
<asp:Button ID="btnReject" ...
0
votes
3answers
41 views
Passing functions as a parameter
How to pass a function to another function and call it in that other script in specific moment?
For example I would like to do something like this:
var interval;
var parallaxElements = ...
0
votes
1answer
45 views
What's wrong with this short Javascript code?
I'm trying to make the short Javascript code throw an alert and show 93 instead of 0-93 but it's not working ?
<html>
<head>
<script type="text/javascript">
function ...
0
votes
1answer
90 views
Javascript Function values pulled from HTML form fields
I am trying to create a HTML system, it creates a .txt form through phonegap.
my HTML elements are as such
SCRIPT
function Savenote() {
// Wait for Cordova to load
//
...
0
votes
3answers
47 views
JavaScript .innerHTMLworking only when called manually
I've got a very simple function, of replacing the innerHTML of a element. I've been trying to debug this for hours but simply can't, and it's infuriating.
When called from a button press the ...
3
votes
3answers
257 views
I call a javascript function for print but doesn't work
I use below code for print from Page but doesn't work (means when i click on print button nothing happen). the function doesn't call
<script type="text/javascript">
function printing() ...
0
votes
1answer
60 views
Force javascript to reevaluate on signals?
So I have the following case:
QML file:
import "Script.js" as MyScript
SomeItem{
source: MyScript.getSource
}
JavaScript file ( Script.js ) :
function getSource(){
return ...
0
votes
2answers
45 views
.split(); error when making a function run another function
I have a problem with my .split(); method.
I call this function:
get_content_ajax("html/settings.html", "#ajax", 1, "Settings page have been loaded.", "place_settings", "'settings', 'api_username', ...
0
votes
1answer
74 views
Use key's value as key in key-value pair in a Javascript function param [duplicate]
Possible Duplicate:
Use key’s value as key in key-value pair in Javascript
As a followup to Use key's value as key in key-value pair in Javascript function parameter. How can you use the ...
0
votes
1answer
497 views
Javascript Pass Parameter to Callback or Set Variable Value in DistanceMatrixStatus
I have been playing a little bit with Google's DistanceMatrixService. The code below works, but, how can I pass another parameter to the callback function or grab one of the values out of the ...
0
votes
1answer
171 views
Using a JS while loop to draw several images to the canvas in different locations
I have the following JS loop, which I'm using to draw several images to an HTML5 canvas:
while(arrayIteration < allImagesArray.length){
context.drawImage(allImagesArray[arrayIteration], ...
0
votes
2answers
354 views
Calling a JavaScript function from another function in a different JS file
I have a web page displaying an HTML5 canvas. When the web page loads, the following JavaScript function is called:
window.onload = function(){
var sources = {};
sources[0] = ...
0
votes
3answers
76 views
loading xml from a database to be used in multiple functions
I have a database where i'm using php to randomize the information by ID and send it out via xml. My issue is that I only want to grab the xml once and store it for use in at least 2 functions... one ...
0
votes
2answers
706 views
How to pass multiple parameter in javascript function which is called from another javascript function?
I am using google maps and the infowindow that opens on the click of the marker calls a JavaScript function.
There is another function with multiple parameters that has to be called from this ...
0
votes
3answers
136 views
javascript functions with json object parameter
If I have a number of functions that take json object parameters, does it make any difference whether I assign them to a variable before using them inside the function:
Function doSomething(data){
...
0
votes
1answer
241 views
JSP javascript function onclick to different jsp page
I have a form and javascript function to open 2.jsp page but it keeps giving me
Message: Object doesn't support this property or method
Here is how I do it. I tried to put in only the important ...
1
vote
1answer
182 views
HTML5 FileSystem Initialization
I tried a simple project using HTML5 FileSystem,
so I can store data in the client-side,
My first trial was a success, because I initiate everything at the start with JavaScript,
and manipulate the ...
1
vote
1answer
49 views
Understanding JavaScript functions and plugins set up
I have just started to write JavaScript after some time and I am confused by plugins constructor set up. I went through this link for advice.
What does the exclamation mark do before the function?
I ...
0
votes
2answers
210 views
Javascript Function not working in Google Chrome?
function showMe(id_show_element) {
document.getElementById(id_show_element).style.display = '';
}
0
votes
1answer
65 views
Is there a way to iterate through a javascript object's prototype variables and functions?
This question is no longer applicable to what I'm trying to do because I have to declare the name of the pmp objects with a name.
I want to be able to associate an object with each prototype function ...
0
votes
0answers
129 views
get values from mysql and pass it to javascript function
I have a table in mysql database called links which has 2 fields. First one is for url and the second one is for id. What I want is get random link and pass it to javascript function to use ...
0
votes
0answers
36 views
Differences in declaring functions in Javascript [duplicate]
Possible Duplicate:
JavaScript: var functionName = function() {} vs function functionName() {}
This is a quick theoretical question
what, if any, is the useable difference between the ...
1
vote
3answers
72 views
Reflect select state in javascript function
In javascript how do you make it so that a function is ready to change at any moment? I want to make it so that when someone selects a different option from a drop down form an image for that selected ...
1
vote
4answers
62 views
Is it possible to get the value of a variable in a loop inside a function into a global variable?
I need to get the result of a variable after it has been through a loop, I have tried getting its value by making it a global variable but it's value doesn't change. Is this possible at all?
Here is ...
1
vote
2answers
126 views
Javascript back on two consecutive pages
So, I ran into a problem: I have 2 (or more) consecutive pages, which the user can click through. At the bottom of each page there's a "Back" button (with Javascript's history.go(-1);), so that the ...
2
votes
4answers
134 views
creating an instance of a function in javascript
I want to know whether this sentence is correct?
You can do:
var a = new A();
if and only if A is instanceof Function.
Simply you can create an instance of function and you know a function is ...
1
vote
2answers
144 views
How many ways are to call a javascript from html?
How many ways are to call a javascript code? First there is the typical <script> tag then there are the attribute of some tags, onload="" for the body tag, href="JavaScript:" of a tag, ...
0
votes
1answer
33 views
How do I pass an image back from a function in JavaScript?
My GUI will query a server for a serialized image. Right now, I just want to load a local file and display it, but in WebStorm the result of queryGetSiteMap() is void.
function queryGetSiteMap() {
...




