Tagged Questions
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.
0
votes
0answers
6 views
Highchart doesn't show the graph : error adding javascript array in series
I am plotting the population information using bar graph in highchart. I fetched the data using Ajax call and store them in a array
$(document).ready(function(){
var url = 'zone.php';
...
0
votes
2answers
9 views
Generated fields not triggering a script with .blur()
I'am quite new to Js and Jquery.
I have a problem with a script that is triggered with the .blur() option like this :
$('.check-total').blur(function(){
verifCheck();
});
Moreover I have a ...
0
votes
1answer
18 views
Different file Javascript in the same file
Include many JavaScript files on the same page can lead low performance.
What I want to ask is:
It is best to keep separate files or include all files in one file Javascript?
And if it is better to ...
0
votes
0answers
4 views
Trigger and repeat an action (button click) with JavaScript and HTML5
I want to make a trigger which can be repeat by a if boucle.
I wonder how do this with the condition for color of pixel
I mean
If, [at X=1000, Y=500, the pixel = RGB:90;90;90] or [at X=1000, Y=600, ...
0
votes
0answers
10 views
How to change css value from view with backbone.js
I have a .css file which includes this:
#nameTd{
background-color: #EEE;
}
#fgTd{
background-color: #EEE;
}
#bgTd{
background-color: #EEE;
}
And a view such as:
var ...
0
votes
0answers
10 views
To display the webpage again, Internet Explorer needs to resend
In my ASP.NET WebForms page I have a Modal window that pops up. The javascript code for displaying this modal window is as follows:
function OpenMailAddressWin(subscriberContactRelationGid, routeId, ...
0
votes
0answers
20 views
displaying combo box for Categories
I've got this problem that I can't solve. Partly because I can't explain it with the right terms. I'm new to this so sorry for this clumsy question.
Below you can see an overview of my goal.
i want ...
0
votes
0answers
4 views
How to create elements depending on data in D3?
looking at sample:
d3.select("body").selectAll("div")
.data([4, 8, 15, 16, 23, 42])
.enter().append("div")
.text(function(d) { return d; });
cant help but wonder how to make append ...
0
votes
0answers
7 views
Chrome Extension: Handling Clicks
I wanted to code a little chrome-extension, wich does something on clicking on specific buttons on a specific page. The Problem is: How can I implement an click-event in a chrome-extension? I've ...
1
vote
0answers
27 views
Dragging on html table cells
Fiddle
$(document).live('mouseup', function () { flag = false; });
var colIndex; var lastRow;
$(document).on('mousedown', '.csstablelisttd', function (e)
{
//This line gets the index of ...
0
votes
0answers
7 views
Change Height of Item Layout Accordion Extjs
I have the following panel with the layout accordion, How can i change the height of the first item, I tried to define it inside the object but it didn't really work. Here is the code:
me.accordion = ...
0
votes
0answers
6 views
Django with google charts
I'm trying to get google charts displayed on my page, but i can't figure how to pass values from django views to javascript so i can draw charts.
Django code:
array = ([
['Year', 'Sales', ...
0
votes
0answers
6 views
jcountdown1.3 count down is not counting down
Here is my code-
var now = new Date();
var newDateObj = new Date(now.getTime() + 30 * 60 * 1000)
$("#countdowntimer").countdown({
date: newDateObj.toGMTString(), //Counting TO a date
htmlTemplate: ...
0
votes
1answer
19 views
Converting HTML time value into Javascript integer
I would like to convert the following time value:
<td valign="top"><font face="Arial" color="#F0AC2F"><center><strong>TOTAL OPERATION ...
0
votes
2answers
16 views
Why is angularjs not resolving my object correctly?
I am building an angularjs app and having a small issue. I am populating a list of projects then filtering that list based on some conditions. When viewing on the web page, everything looks fine and ...