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
5 views
google map to show marker on default address
javascript:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var geocoder = new google.maps.Geocoder();
function ...
0
votes
0answers
3 views
EXTJS 4.0.7 css file shows different results then from the web link
I am using extjs 4.0.7 library in my project. I noticed that if i use web link reference to css file like
'<'link rel="stylesheet" type="text/css" ...
0
votes
0answers
6 views
0
votes
0answers
6 views
Can't capture google map width html2canvas
I have a problem when capture screen width html2canvas of html2canvas.hertzen.com, when I capture Map of google map in my page I can't see map
My map
http://i.stack.imgur.com/GliSo.jpg
My capture
...
0
votes
2answers
28 views
getElementById not working within if statement - Troubleshooting
I have a simple JS script to swap out elements containing Flash and replace them with other formats for users who don't have Flash installed.
var hideclass="hidden"
var showclass="empty"
function ...
0
votes
2answers
15 views
Jquery Ajax POST Request sending data issue
I have searched a lot and not been able to find a working solution to why my post request is not sending it's data to the server. I can send the request without data and I get my results from the ...
0
votes
1answer
11 views
Warnings after moving WP site between local machines
I have moved a local Wordpress site from one computer to another.
Now the site loads on the new machine and I can switch to other pages in the site but except for the homepage I get many "Creating ...
0
votes
0answers
9 views
Duplicate searching script does not detect multiple values
I have been trying to customize and re-write the code of duplicate finder that is provided by Google here. My code is copied below. It's not final version yet but at this stage it should already work; ...
0
votes
1answer
14 views
Animate objects one after one by changing class names
$(document).ready(function () {
$('.box1').addClass('animated').delay(50).queue(function () {
$('.box2').addClass('animated').delay(50).queue(function () {
...
0
votes
0answers
6 views
Highcharts minPointLength on columnrange not working
I'm working with the columnrange chart type, and some of my could end up being much much smaller than the normal size, so I would like to specify the minPointLength so that the small data points are ...
0
votes
0answers
9 views
How to rotate x-axis text in dimple.js?
This is my dimple bar chart (powered by d3):
var sidechart = new dimple.chart(chart_svg, data);
sidechart.setBounds(60, 30, 200, 300)
var x = sidechart.addCategoryAxis("x", ...
0
votes
4answers
39 views
get select option text
I have a select list that contains the following values:
<select id="selectOption">
<option value="10">within 10 miles</option>
<option value="25">within 25 ...
1
vote
0answers
13 views
jQuery ui Dragging and dropping
I have been experimenting with this code: jsfiddle It highlights and let you know which boxes you can drop the boxes onto but it is not accepting any droppables. Does anyone know how I can alter this ...
1
vote
1answer
9 views
Regex with limited use of specific characters
I would like to be able to do a regex where I can identify sort of a bank of letters like [dgos] for example and use that within my regex... but whenever a letter from that gets used, it takes it away ...
1
vote
2answers
29 views
Javascript: confuse about usage of function call method
I achieve a forEach function:
function forEach(arr, fn) {
for (var i = 0; i < arr.length; i++) {
fn.call({}, arr[i], i);
}
}
what I confused is about fn.call({}, arr[i], i);
the ...