JavaScript is a dynamically-typed language commonly used for client-side scripting. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). Unless a tag for a framework/library is also included, a pure JavaScript answer is expected.

learn more… | top users | synonyms (6) | javascript jobs

4
votes
2answers
81 views
+50

dropzone.js - acceptedMimeTypes

I am trying to implement some limitation to the file types allowed for upload using dropzone.js. Somehow the below code works for Word, Excel and Powerpoint documents but it doesn't work for .zip and ...
6
votes
3answers
337 views
+400

Display Good-looking Math Formula in Android

It is sad to see that science and math is never given enough attention in Android platform. Maybe this is an easy problem, but I'm a total dude in javascript so I'm struggling to understand how to ...
1
vote
1answer
122 views
+50

storing the current value of countdown timer in variable for using in the template toolkit file

I have a count down timer in the Hours left field, to find the hours left. I also have a field to enter the total estimated time and upon enetering the value of total estimated time, the timer will ...
6
votes
4answers
287 views
+200

Is it possible to “sandbox” arbitrary JavaScript to only operate on one <div> and not the whole document?

what I am trying to do is to force some arbitrary JavaScript code to execute "inside" a DOM element, e.g. <div>. In other words, is it possible to make a piece of code "thinking" that ...
-1
votes
1answer
94 views
+200

IE9 X-Frame-Options deny upload

I'm in a big trouble here. I got a .Net MVC 4 application that uses Kendo UI as layout base and for upload too. The upload works fine on all browsers except on an IE9 (9.0) running on a Windows Server ...
1
vote
1answer
92 views
+100

Excel pivot table in a web page

This is probably a closable question, but really I think Stackoverflow is the best source where a practical answer can be found. I'm working on a web page showing a pivot table. My solution is based ...
4
votes
3answers
199 views
+100

The most performant way to check if a string is blank (i.e. only contains whitespace) in JavaScript?

I need to write a function which tests, if given string is "blank" in a sense that it only contains whitespace characters. Whitespace characters are the following: '\u0009', '\u000A', '\u000B', ...
1
vote
1answer
147 views
+100

Why jQuery triggerHandler() works but trigger() doesn't?

Click an element using triggerHandler() works: $element = $('#gwt-debug-location-pill-edit-div:visible'); $element.triggerHandler('click'); But, clicking it using trigger(), doesn't: ...
6
votes
2answers
99 views
+200

Google Chrome - how can i programmatically enable chrome://flags some of the modules from disable mode to enabled mode?

How can I automate the setting of chrome flags to enable few modules? I have application designed which requires on open the chrome://flags few modules enabled, otherwise the whole application does ...
34
votes
5answers
17k views
+50

Alternative to SIMILE Timeline for timeline visualization?

So I have been having lots of fun playing with SIMILE Timeline, but unfortunately, it appears to be all but abandoned (most recently closed ticket May 2009) and riddled with memory leaks, especially ...
1
vote
3answers
709 views
+50

Javascript tools for building something that looks like a cable program guide

I am looking for some tools or examples of code to help me build something that looks and behaves somewhat like a cable program guide. The general idea is that this will be an administration UI to ...
2
votes
2answers
77 views
+100

jquery oop override method function

Hi i would like to know how can i override method function if my method is declared like this (function ($) { $.extend({ tablesorter: new function () { function ...
2
votes
2answers
83 views
+400

Google places api returns duplicate places

I'm searching for places by keyword within an array of LatLngBounds. var boundsarr = new Array(); boundsarr[0] = new google.maps.LatLngBounds( new ...
0
votes
3answers
72 views
+50

Google maps info windows displaying same information

I have google maps on my website that displays a list of locations around the UK. But the info window displays the same record for each individual record. My code is underneath. Any reason why? var ...
1
vote
1answer
56 views
+50

Image scaling or DOM duplicating algorithm in JavaScript?

Original question: How do I scale an image in JavaScript without CSS support? My team has an STB environment, kind of an EPG thing, that supports JavaScript and DOM thrown to it. CSS support exists ...
1
vote
1answer
72 views
+100

Navigate through tweets (boxes) + three js

this is my situation: I want to show twitter tweets like this: http://threejs.org/examples/css3d_periodictable.html This is what I have now:http://nielsvroman.be/twitter/root/index.php The boxes are ...
4
votes
4answers
103 views
+50

Inheritance in JavaScript causes Uncaught TypeError

May be I'm missing something here. Please bear with me as I'm new to OOP in javascript. But I need to find a solution to my problem. I have this code. var parent = function() {} ...
0
votes
1answer
43 views
+50

Using google charts api and displaying content via ajax in cluetip

I have a jsp page that uses google charts api to display data in the form of bar charts. Here is the code for that. I want to display this page in a tooltip (cluetip). My Google Chart code works well ...
1
vote
1answer
52 views
+100

Whether element is behind inner nested scroll

How to detect if an element inside a scrollable block is visible to user (i.e. is in the visible area of the scrollable parent)? Is there a universal solution, not involving iterating over all parent ...
0
votes
1answer
79 views
+250

Compressing a blob in javascript

I need to send a blob to the server with ajax, but it can end up getting somewhat large, and I'd like to decrease upload time. I've tried jszip already, but that just gave me an empty file inside the ...
2
votes
2answers
594 views
+50

How do you make text selectable on a jquery dragable div?

I made a div dragable using jquery. However there is some text in that box and I would still like to be able to copy and paste the text, but when I make an item draggable well when I click on the box ...