Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

66
votes
5answers
24k views

How to execute a JavaScript function when I have its name as a string

I have the name of a function in JavaScript as a string, how do I convert that into a function pointer so I can call it later? Depending on the circumstances I may need to pass various arguments into ...
8
votes
7answers
892 views

JavaScript - run once without booleans

Is there a way to run a piece of JavaScript code only ONCE, without using boolean flag variables to remember whether it has already been ran or not? Specifically not something like: var alreadyRan = ...
5
votes
6answers
583 views

Javascript - Passing arguments to function

I've always passed arguments to a function like so: setValue('foo','#bar') function setValue(val,ele){ $(ele).val(val); }; Forgive the silly example. But recently I have been working on a ...
4
votes
4answers
74 views

Is there a way to do two different functions?

For an example, if I want the user to do both click and keypress that will give the same output. I would not like to have two of the same codes. If I had something like $('#next').click(function(){ ...
4
votes
10answers
151 views

is it bad practice to parameters through a string of functions?

im building a reasonably large JS application and i wanted to get your opinions on some of the logic. i wanted to know if its considered bad practice to pass a parameter through a string of functions ...
4
votes
2answers
230 views

How to delay the Execution of a Javascript Function After a Live Keyup event is called?

Hey programmers, I have removed everything from my function below to just target exactly what I need help with... After the keyup event is called, the reloadContent function will make an ajax call to ...
4
votes
2answers
555 views

JavaScript - Settting property on Object in Image load function, property not set once outside function

Sometimes JavaScript doesn't make sense to me, consider the following code that generates a photo mosaic based on x/y tiles. I'm trying to set a .Done property to true once each Mosaic image has been ...
3
votes
6answers
119 views

Question on Javascript Function Parameters

I was trying to write some javascript function and realised that function testFunction(input_1, input_2, input_3) { alert("alert"); } however when i call the function like this: <input ...
3
votes
5answers
105 views

How to return values in javascript

I have a javascript function: function myFunction(value1,value2,value3) { //Do stuff and value2=somevalue2 //to return value3=somevalue3 //to return } function call in Code: .... ...
3
votes
4answers
79 views

What is the difference between these two function declarations in JavaScript?

In JavaScript we can say: function a() {}; Or we could say var a = function() {}; Can anyone explain to me how exactly these differ, which, if any, is more preferable, and under what ...
3
votes
3answers
310 views

passing parameter to closure function in javascript

MyLibrary.MyModule = ( function initialise() { this.id = id; this.c = document.getElementById(id); this.ctx = ...
2
votes
1answer
44 views

JavaScript object creation methods

I've been searching around Stack Overflow, and the web in general, for a decent explanation of something I'm seeing in some legacy JavaScript. So far I haven't had much luck, so I've decided to take ...
2
votes
4answers
50 views

Can I alias a key in an object literal?

I have an object literal which is used as a configuration element and is looked up for keys. customRendering:{ key1: func(){....}, key2: func(){....} } I have a ...
2
votes
3answers
35 views

Javascript weird nested assignment issue in a object literal

I have a JS object property defined in an object literal: reqHeader: [{name:'Chris'},{age:'06'}] which I am nesting inside another property in the same object literal: content: {headers: ...
2
votes
3answers
26 views

Custom Operation Function

Im trying to create a little function for my use that is suppose to get the Text of the chosen element. If the element has Math in is than my function is suppose to do the math and append to the ...
2
votes
6answers
51 views

javascript unique(?) function writing

a lot of times i can see function written like this : name : function(){ ... } i got several function about this : what is this function different from normal(?) functions what this kind of ...
2
votes
2answers
134 views

document.body.setAttribute not working in IE-7

I have added "test.js" file in my .aspx page (in head section) . In test.js i added a script "document.body.setAttribute("onload", "testload()");" which is working well in IE-8-9 ,Mozilla ,Chrome ...
2
votes
2answers
43 views

In javascript, what are the trade-offs for defining a function inline versus passing it as a reference?

So, let's say I have a large set of elements to which I want to attach event listeners. E.g. a table where I want each row to turn red when clicked. So my question is which of these is the fastest, ...
2
votes
1answer
126 views

Making the first N letters in a string bold?

I am trying to make an autocomplete form that will bold the letters in the results as you type. The function I have made doesn't work: function setBold () { var text = ...
2
votes
1answer
202 views

How to customize jquery autocomplete for displaying in a DIV

I'm just wondering, I have used autocomplete plugins before but the example on jquery's website seems very simple and useful: $(function() { var availableTags = [ "ActionScript", ...
2
votes
3answers
2k views

Javascript document.form.submit() not working with Firefox 4.0 and IE8

I'm trying to submit a form with javascript. Works fine with Firefox 3.6, but doesn't work in Firefox4.0 and IE8. Code: <table> <tr> <td> <form ...
2
votes
6answers
101 views

adding a js method

I have a js function that is named getID which is basically return document.getElementById(id) I want to make another function, getTag that would return getElementsByTagName. The part that I can't ...
2
votes
3answers
389 views

In Javascript, is it possible to pass a variable into <script> “src” parameter?

Is it possible in Javascript to pass a variable through the src parameter? ie. <script type="text/javascript" src="http://domain.com/twitter.js?handle=aplusk" />` I'd like twitter.js to look ...
1
vote
1answer
43 views

Unit testing self-invoking functions

I have a self-invoking function in a JavaScript file. Something like this: com.renderer = (function(){ render(data){ } .....other functions return{ init : function(){ ...
1
vote
4answers
34 views

Difficulty splitting array and returning a value from within it; Javascript

I have got an array that consists of strings. I have made a function that searches the array based on the search term parameter. However, when i run the code it only ever outputs the string at index 0 ...
1
vote
1answer
194 views

Google Maps API geocode function problem

Ok, I'm fooling around with Google Maps API v3 and I bumped into a problem. I don't know if its the API or just some JS error i made. Problem: addMarkerFromAdress() function calls on ...
1
vote
4answers
74 views

Run php code in a script function when the function is called

I have a file named a.php which has a html button with a script function within the same page.Code is given bellow //a.php <input name="wpost" type="button" value="Publish" ...
1
vote
1answer
390 views

Why in knockout.js examples is the viewmodel sometime defined as a function and other times a direct variable definition?

i am trying to understand what is the best practice for defining and organizing my js viewmodels with knockout. I am not js genius so... Ok so in many of the examples the viewModel is defined as: ...
1
vote
2answers
83 views

Issue with pushing values to a javascript array if it is a function

I am trying to create a set of buttons that behave like a list, where an array is created from the values selected. Below is the function for checking if the value already exists in the array, and ...
1
vote
1answer
200 views

How to properly use setTimeout function to make an Ajax call?

I would like to use a setTimeout function so that Ajax calls are only made at the most every 1 second. Here is what I have. This is clearly not correct, but I am not sure how the setTimeout function ...
1
vote
3answers
75 views

A Javascript function

Please explain the following way of writing a function in javascript functions : (function (){ // some code })() I understand the fact that because of the trailing braces " () ", the function ...
1
vote
1answer
71 views

What is the best way using jquery functions to store 4 variables from an array and accessible by another paage

Hi everyone I am trying to design a seat picker/checkout process for a site. The layout corresponds to the layout of a bus. The structure of my final code would be like this: ...
1
vote
3answers
222 views

How to use window.scroll to automatically scroll on pageload?

function Scrolldown() { window.scroll(0,300); } How can I use this function (or a similar one) to automatically scroll down when the page loads? (without clicking a link) Regards, ...
1
vote
1answer
155 views

Return jQuery AJAX output as return if a function

I called a web serivce via jQuery AJAX. web service returned 'True' as output.I want to return as return of a function. but it returns undefined. Where is the source of problem ? Function ...
1
vote
3answers
63 views

How to stop function from Freaking out when Ajax calls are made on Scroll Position?

Here is the URL to the project im working on: http://www.buymyoldiphone.com/Ajax_Tests/TodTom/Social%20V2.0/NEW/index.html I tried to allow it to load new content (using ajax) when the scrollbar was ...
1
vote
3answers
91 views

stupid js func undefined

I'm writing a chrome extension, in my background.html page, it is injecting a js file with this command: chrome.tabs.executeScript(null, {file: "mod.js"}); All of the code from this file is running ...
1
vote
1answer
125 views

How to use unescape() function inside JavaScript?

I have a JSP page in which I have JavaScript function that will be called when a link is clicked. Now, when the value reaches the JavaScript function, the apostrophe is encoded. Example: ...
1
vote
7answers
207 views

How to Append a Div in-between two Divs based on their ID's using Jquery?

If I have these objects: <div id='1'></div> <div id='2'></div> <div id='3'></div> <div id='4'></div> <div id='5'></div> I have a textbox: ...
1
vote
1answer
91 views

Help me change this JS/Jquery Function to Dynamically Create Divs

I have uploaded my code to JSfiddle: http://jsfiddle.net/TSM_mac/pnQEe/ I want to be able to type into the text inputs on the page, and click the "Add Div Type" button, and it will append (create) ...
1
vote
2answers
810 views

how to disable tinymce editor

I want to disable tinymce editor using javascipt function. Actually i have two radio button 1] On & 2] Off. When user select the Off Radio Button my tinymce editor should get readonly/disabled ...
1
vote
4answers
340 views

<input type='textarea' onmousemove='toscheck()' /> isn't working only on Firefox

For some reason, this code works all chrome, safari, and ei but not on firefox. <script type="text/javascript"> function toscheck(){ if(tos.scrollTop+540 > ...
1
vote
3answers
202 views

jQuery function called by Generic Javascript function

I'm a bit confused it seems here. What I'm trying to do is create a Javascript function that disables all inputs on a page, and then a function that enables all the inputs on a page. This was pretty ...
1
vote
5answers
188 views

Calling a function inside a function javascript

I have this code inside the success function of a jQuery ajax call success: function(d) for (var n in d.items) { google.maps.event.addListener(markers[d.items[n].id], 'mouseover', ...
1
vote
3answers
554 views

Declare javascript function, jQuery

in my main js file where I put all my jQuery stuff I have following new funcitons: function getDate(){ var currentTime = new Date(); var month = currentTime.getMonth() + 1; var day = ...
1
vote
1answer
44 views

Dissapearing object function?

Is there a reason for object functions to be unset or deleted or simply not applied for any reason at all that isn't intentional? I am maintaining someone elses code and gone through it many times. I ...
1
vote
3answers
878 views

How to check/calculate the week-day count (using Date functions) using Javascript?

I would like to check if a given date is the first, second, third, fourth or last monday, tuesday, wednesday,..., sunday in the dates month. The function should look like this: if(checkdate(date, ...
1
vote
1answer
85 views

Probably obvious problem in JavaScript

I think this is just an obvious problem that I can't spot because I've been staring at code too long today. I have this callback as part of a JQuery POST: function(data){ ...
0
votes
2answers
32 views

Self-executing functions in Titanium

Tweetanium, a Titanium project widely refernced as a guide for best practices in Titanium: https://github.com/appcelerator-titans/tweetanium uses self-executing functions almost everywhere, even for ...
0
votes
0answers
51 views

Using results from nested javascript functions with JQuery

I am trying to use Google Geocode (v3) only if one of two passed records do not exist in a database. I have the first part working where I query the database and return a value, but the second part ...
0
votes
3answers
83 views

trouble adding value of <td> to text box onclick

I am trying to create a javascript function within my html document that essentially takes the value of each <td> and places it in the textbox. Any help is very appreciated. <html> ...

1 2 3