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). A pure JavaScript answer is usually expected, except if a tag ...
0
votes
0answers
4 views
Mailing script not working
I found a guide on how to create a sweet contact form, unfortunately it doesn't work.
http://www.hongkiat.com/blog/ajax-html5-css3-contact-form-tutorial/
So this is my form:`
Your ...
0
votes
0answers
9 views
ExtJS function to toggle all checkboxes
I have a simple list of HTML checkboxes, as follows :
<input type="button" class="check" value="check all" onclick="foo()"/>
<input type="checkbox" class="chk" value="1"/> ...
0
votes
0answers
2 views
Waypoints with reverse geocoding
i am trying to use waypoints as the example in API of Google but i have latitude and longitude not an adress.Can anyone help because i dont know how can i use waypoints and reverse geocoding at the ...
0
votes
0answers
36 views
My loop never ends?
for some reason my loop never ends and each one of the conditions seemes to keep getting looped over. I think its because when the frame == 4 that the clear interval is not working?
At the moment ...
0
votes
0answers
9 views
How can I resize tiles on a loaded stumbleupon page?
On Stumbleupon.com there are these article.tile.tile-url.reflow elements of varying sizes.
How can I resize these tiles to be the exact same size??
0
votes
1answer
12 views
Data Table inline edit single column
I want to inline edit single column. I am using DataTable. Currently it is editing all the column. I want fourth column to edit.
HTML
<table id="demo-dtable-01" class="table table-striped">
...
0
votes
2answers
25 views
Why my form parameters not getting in JSP
This is my HTML form :
<form action="supplierportal_home.jsp">
<select id="contract" name="contract">
<option selected="selected">Please Select</option>
...
0
votes
2answers
28 views
Line is not being drawn correctly on canvas
I am a newbie in HTML5 but have good experience of HTML. I was learning about canvas and thought of making a program. In this I was handling the user's mousedown and mouseup and was setting up the ...
0
votes
0answers
10 views
Using require in node without just code and not a file
I have code in a database that has different node modules in it. Like this:
exports.hello = hello
Normally, I would just use hello = require './hello.js'. However, becuase the code is stored in ...
-1
votes
1answer
15 views
How to add multiple paragraphs to a variable in Javascript dynamically? Actually I'm getting those paragraphs from the view
document.getElementById('id_comment_133').value = "Great job using the customer’s name during the initial greeting! This not only showed good communication between the sales team members, but also ...
0
votes
0answers
20 views
How to efficiently find a value inside nested objects using underscore's each function?
In my game, I need find a certain monster that is contained in an "units" array. This array is inside a spatial cell structure inside a world object. How can I find this unit without writing ugly ...
0
votes
0answers
12 views
Cannot load your from
What could be wrong? He says tour is not found, but I check the variable tour kml file which contains my tour. Can you help?
var ge;
var la;
var tour = null;
var placemark;
google.load("earth", "1");
...
0
votes
0answers
15 views
mobile webpage for arc and other devices
I am stuck on what to do about my mobile webpage. I used media queries then I load my website on my SE arc mobile and it is AWFUL!!!!
I have used boostrap responsive as well as css/html
The font is ...
0
votes
1answer
21 views
How do I unit test Javascript files that call library functions defined externally?
Let's say I have my awesome.html file with
<head>
<script .. abc-library.js>
<script .. app.js>
</head>
and I would like to unit-test my own file, app.js.
but inside my ...
0
votes
0answers
11 views
adding/deleting marker from gmaps
I need to add/delete marker depending on checkox's state
here is my adding/deleting function(which doesn't work properly):
function getPointOnMap(mapObj) {
var position = new ...