Tagged Questions
JavaScript is a dynamically-typed language commonly used for client-side scripting, but (despite the name) is NOT related to Java. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). If a framework or library (such as jQuery) is used, include ...
0
votes
0answers
2 views
What is the best way to remove/delete models from the end of a Backbone.Collection?
What I'm trying to do is remove the last 100 models from a collection. Is there an easy way to just slice those off and remove/delete them or do I need to iterate through them and remove them?
...
0
votes
0answers
5 views
Start on tick the 1st day of the month (Highcharts)
I am working on a chart and I have been asked to put the first X axis tick in te 1st day of the month (and no the first monday as default), but I do not find any property related in the api ...
0
votes
1answer
5 views
javascript: range.setStart() INDEX_SIZE_ERR(1)
I am trying to set a range and it's just not working. For now, I'm trying in IE.
The following gives me a DOMException: INDEX_SIZE_ERR(1). Should it not give me the range bcdef?
<div id = ...
0
votes
0answers
8 views
Rating in HTML static site
I am developing a static HTML site which consists of some rock songs.
User will listen to those songs and assign rating to it. I've searched various sites and applied several rating features but as ...
0
votes
0answers
3 views
enable webGL automatically?
I am using glfx.js jquery plugin for adjusting image's hue/saturation but most of the browser not supporting WebGL
is there a way to automatically enable webgl in browser if website uses it?
I know ...
0
votes
0answers
10 views
Prototypes or closures for execution consistency and performance?
What is the best compromise between performant execution and execution time consistency for method calling in javascript?
I'm still learning javascript and would use prototypes for most everything ...
2
votes
3answers
10 views
JSON.stringify converting Infinity to null
I have JavaScript Object say:
var a = {b: Infinity, c: 10};
When I do
var b = JSON.stringify(a);
it returns the following
b = "{"b":null, "c":10}";
How is the JSON.stringify converts the ...
-1
votes
1answer
17 views
what is '.tipN' sign in knockout js?
var InitTipsy = function () { $('.tipN').tipsy({ gravity: 'n', fade: true });}
What is the meaning of '.tipN'?
0
votes
1answer
23 views
How do set select element array index when it is in array and bind to blur event
I have array of select dom and input textbox . On blur event of input(of perticular index) want to set the element in select dom value of same index.
My bind is working but after each blur event ...
3
votes
3answers
37 views
Javascript function definition error
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
0answers
29 views
Conditionally display button on Table depending on number of visible rows
I have a form which allows the user to add a new table row via a button in the bottom row which all is working well and also allows users to delete a table row but will always leave one row visible. ...
0
votes
0answers
7 views
Onclick event giving error in infowindow
I want to add street view option to my google map infowindow in a anchor tag so that on click of anchor tag text it will display the streetview of that place in that infowindow. but i am geeting error ...
0
votes
0answers
5 views
Problems Oauth 2 and Google APIs in appmobi
After a lot of work I managed to make a simple Oauth authentication work for Twitter API, however, my intention was to be sure the basics were working to implement a Google APIs authentication.
The ...
1
vote
1answer
33 views
How to fire a function on page load with javascript the right way?
Checked quite a lot of info also on stackoverflow, like in here How to call a JavaScript function on page load
but still I get problems firing the function on load. I have this one:
...
-2
votes
1answer
19 views
twitter bootstrap modal not loading
Here is he code that i basically copied from the twitter bootstrap page. However, it isnt loading at all! All my files are correct but the modal is still not showing up. Please help me.
<head> ...
-1
votes
0answers
12 views
Why do require and fs.existSync use different relative paths
I have this code here:
if(fs.existsSync('./example/example.js')){
cb(require('../example/example.js'));
}else{
cb();
}
Why should fs.existSync be using a different directory than require?
...
0
votes
1answer
10 views
Where can I find extensive api documentation for phonegap?
I know that there's the official Phonegap API docs site.
But, it's missing things like touchstart and touchend.
Are there any other API documentation sites for Phonegap?
Maybe even the raw docs ...
0
votes
0answers
8 views
Two Flex Sliders set browser unresponsive
I've setup two flex sliders using the following code:
$('#a_slider').flexslider({
animation: "slide"
});
$('#b_slider').flexslider({
...
0
votes
0answers
7 views
Staring issue with WMS and public IP
I'm facing a strange problem with my application (Openlayers). It works with private IP but not with public IP !! Everything was fine when I was using WFS/Vector. but since I switch to WMS, problem ...
0
votes
1answer
29 views
What is “/?” sign in knockout js?
$.getJSON("/sample/View/?lanKey=" + viewModel.LanguageKey()
+ "&typeKey="
+ viewModel.TypeKey()
+"&dic=false", function (data)
thank you in advance
0
votes
1answer
25 views
Disabling hover Method
I am using Rickshaw javascript framework. Where there is one hover class is there. There I can modify the hover class to return my own result in the existing code.. In the same way I want to disable ...
0
votes
3answers
27 views
Regex to remove spaces between '[' and ']'
I have been breaking my head on this for sometime now.
In javascript I have a string expression where I need to remove the spaces between '[' and ']'.
For example the expression can be :-
"[first ...
0
votes
1answer
30 views
Run JavaScript code every second with rAF.js?
I moved from using setTimeout to requestAnimationFrame as per the post at:
http://paulirish.com/2011/requestanimationframe-for-smart-animating/
How I can set some code inside my animation() loop to ...
-2
votes
1answer
30 views
Convert human readable timestring to seconds [duplicate]
I am getting string like "15 mins" or "2 hours" from user.
Is there any function to convert it to seconds in javascript?
0
votes
0answers
3 views
Showing streetview option in infowindow as one link
I want to add street view option to my google map infowindow in a anchor tag so that on click of anchor tag text it will display the streetview of that place in that infowindow. but i am geeting error ...
0
votes
0answers
8 views
Getting contents of a streaming Blob to be sent to a Node.js Server
I already have a working page that uses the microphone to stream data to an <audio> tag.
However, I want the data sent to my <audio> tag to be harvested instead. How do you
think can the ...
0
votes
2answers
8 views
in-browser JSON editor library -> UI for JSON RESTful service
Is there very easy to use in-browser JSON editor library/framework (preferred) or ready-to-use tool/browser plugin.
It should be that for some URL http:/example.com/resource, that returns .json. I ...
0
votes
5answers
35 views
Open pop window on enter key
I need to open a pop window (www.google.com) which has the link of other site, on pressing the enter key in text field. I could get the alert message but not he pop window.
Here is what I have got ...
2
votes
2answers
11 views
Drag an image on another image and save it to one image (like light augmented reality)
i´m wondering how can i realize this? I want to have an bigger image in the background and be able to drag and drop a smaller image to the position i want on the bigger image and save it finally, so ...
0
votes
0answers
25 views
Onclick menu simultaneously shows its sumbenu and load its link with out hide the submenu
Its my JS for menu. I used it in a Joomla template. It shows and hides the sub menu and changes the clicked menu class into active, but didn't load the content of the clicked menu.
var menu_ul = ...
0
votes
0answers
20 views
JQuery/Chosen on binding for DIV content change
I am loading a div's (called #display) content dynamically. Different buttons generate different #display content. I need all drop-down elements that are added (they can also be added dynamically from ...
0
votes
3answers
36 views
can not handle the json response from php
I'm using the pmxdr library to make a cross domain call (jQurey to php and respond in json). The problem is I can not handle the response properly but if I just print it on HTML is comes as -
...
2
votes
2answers
13 views
Set Relative link in a js file to come from files source rather than domain
I have a site http://www.example.com
I serve my static files from a different domain.
eg http://www.eg.com
in my js file which is located at http://www.eg.com/js/myscript.js
I have a variable ...
0
votes
0answers
9 views
Javascript: Disable iOS scroll-to-top when status bar is tapped
I've got a site, and I want to disable all scrolling when a lightbox pops up, and then re-enable it when the lightbox is closed.
I've got this:
document.ontouchmove = function(e){
if (stopScroll) ...
2
votes
2answers
54 views
How can I Open Div in sequence
I have three check boxes like chkEnglish,chkGerman,chkFrench.
According to these checkboxes there are three div, and in these div there some textbox and button.
mean every checkbox contain a block of ...
0
votes
0answers
24 views
how to implement dynamic slide creation-javascript?
I am doing a project in Phone Gap-android.I am implementing functions in java script.I have implemented SWIPE VIEW using this.
Now,I will share the coding i used to implement this so,that it can be ...
1
vote
1answer
23 views
HTML5 Create an array of textboxes dynamically and set text of the text box
I have a div of list of words displayed in textboxes
<div id = "rightbox" ondrop="drop(event)" ondragover="allowDrop(event)">
<div><input type="text" id="appleword" value="apple" ...
0
votes
0answers
8 views
Maps api geometry library for python
Using javascript google maps geometry apis, I can compute the coordinates of a second point, by giving the coordinates of a first point, distance required and angle. eg.
var point = new ...
0
votes
3answers
20 views
how to get the value from javascript code to jsp scriptlet with in the same jsp page
below is my code (1.jsp)
<html>
<head>
<script type="text/javascript">
function changeFunc() {
var selectBox = document.getElementById("selectBox");
var selectedValue = ...
2
votes
1answer
21 views
automatically click anchor tag link on jsp page
I am having one tricky requirement. I am explaning through example
abc.jsp calls xyj.jsp and xyj has a link like <a href="viewDetails.do">Click</a>
My requirement is that when i run ...
0
votes
0answers
32 views
Reprinting Form input in html
So I am designing a website for myself, which takes a user input from the user through a form, searches for the same in database , and returns the expected output.
Below shown is my HTML Code for the ...
0
votes
0answers
21 views
Create more then one marker on a lat-long
I Have to create more then one marker on a lat- long with different direction to represent mobile tower on the map, to achieve that I have created marker with angle but problem is that they are ...
0
votes
0answers
39 views
printing multiple images on clicking a button
I have a print button which prints images individually, I used media print() and windows.print()
<style type="text/css">
@media print {
* { display:none; }
.printMe { display:block }
}
...
-1
votes
0answers
53 views
Why this code dont work on chrome?
i have this javascript code for my thumbnail scroller, it works perfect on firefox! but on chrome it does't work...
$(window).load(function(){
var $gal2 = $("#gallery_holder2"),
...
3
votes
6answers
75 views
which one is given more preference for JavaScript or CSS?
here is my code
<!doctype html>
<html>
<head>
<style>
body {
color:red;
}
</style>
<script>
window.onclick = ...
2
votes
1answer
59 views
how to remove space at the bottom for dynamic contents?
I am designing a page where bottom part of a div should touch the end of the page that is no bottom margin or padding so I put height of the main div as
$(function() {
...
0
votes
0answers
8 views
Unable to either launch or connect to Chrome using selenium-webdriver
I am creating webdriver as follows:
var driver = require("selenium-webdriver");
driver = new webdriver.Builder().
usingServer(server.address()).
withCapabilities({'browserName': 'chrome'}).
...
-5
votes
0answers
22 views
is there a need to check other browser upon using javascript [closed]
Why cant my javascript run on other borwser? It runs on mozilla but on some browsers it wont.what is the reason for this? I think it is disable in other browser. can you pelase help me.
0
votes
2answers
16 views
window.open with French characters in the url
I use window.open to open a popup with French accented characters in the url.
When a new popup opens, I see the French characters properly displayed in the url.
ie.
...
-4
votes
1answer
37 views
Calculation was different between in c# and JavaScript
I have some values from user enter textbox.But now i assigned this
c# code:
double AnnualDebtService= 32;
double AnnualLeaseExpense= 645;
double PPR= 65;
Javascript: code
var ...


