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
9 views
jQuery - Updating Button Icon after database access fails
I feel like the solution to this should be really simple, but I cannot for the life of me figure it out. Here's the setup:
I have a database with some alarm clock times saved. On my website, there is ...
-1
votes
1answer
20 views
Jquery isn't working or am i doing it wrong way?
I'm new in Jquery. I'm trying to do some basic function in Jquery and AJAX and generating HTML on the fly. but for "$(document).ready(function ()" it's not working.
$(function ()
{
$.ajax({
...
-1
votes
1answer
24 views
Difference between equal, deep equal, and strict equal [closed]
Looking at this page, I was wondering exactly what's the difference between equal, deep equal, and strict equal?
0
votes
0answers
7 views
Java script pushstate history
browser: firefox
for example, there are several pages named: 1.php, 2.php, 3.php, 4.php
i click the link one by one, so the browser history will be show when i click the back button on browser.
it ...
0
votes
0answers
11 views
Replace Content Only with Navbar
I've been searching how to replace content with navbar, and I found this site : Nested Content with Navbars using jQuery Mobile, & completely can't understand how's the javascript works. yes, I'm ...
0
votes
0answers
10 views
Grab iFrame elements and “realtime” changing menu using javascript
I'm developing a website, where I'm bound to use an iframe.
Not such a big point, although I've got a menu, outside the iframe, which has to respond to changes ínside the iframe.
The pages that ...
0
votes
2answers
19 views
javascript match only certain letters in array
I'm using the below in a javascript Q & A chatbot. To answer for example "what is AG in the periodic table? Answer is Silver.
if ((input.search("(what is|what's)") != -1) && ...
0
votes
0answers
11 views
Embed favicon in Greasemonkey script
I have a tiny script designed to change the favicon on Google Music from the Play Store icon to something actually recognizable as Music related:
// ==UserScript==
// @name Update Google ...
0
votes
1answer
37 views
Generate 7 random letters into 7 form fields
I am in need to generate 1 random letter into 7 form fields. An example of the fields would look like below.
The letters can repeat, but only based on the letter and an amount of times that letter ...
0
votes
0answers
27 views
Open new tab on 'Go' from dropdown
I have gone though several post regarding this issue but none of the solutions is working.
(drop down menu: open links in new tab + "Go" link
Drop down menu open in tabs rather than new ...
0
votes
0answers
6 views
Using an exposed object as value or helper in Express.js with jade templating?
I'm exposing (for testing purposes) an object and a named function:
var express = require('express')
, expose = require('express-expose')
, app = express();
// ...
// Expose with 'utils' ...
0
votes
0answers
5 views
Using Aloha to Edit form content before submission
I am trying to use the Aloha editor to edit a form of mine to send as a message to user (via django-postman). I have modeled my approach off of this jsfiddle : http://jsfiddle.net/znWvT/4/ but for ...
-1
votes
2answers
39 views
Getting Started With Javascript Programming Environment/IDE etc
I am an experienced programmer , but quite new to programming Javascript.
Here is what I have done so far:
Downloaded Dreamweaver (Trial Version Expired).
Installed NotePad++ (This is what I am ...
0
votes
0answers
12 views
Binding jquery-ui events to backbone events
I have a backbone view set up like so:
MyView = Backbone.View.extend({
events: {
'click' : 'clickOnitHandler',
'stop' : 'dropHandler'
},
// Rest of class
What I would like ...
-1
votes
0answers
13 views
Form Data appending multiple values with XHR
I'm attempting to tie multiple values to the appended formData. However, only one of them works:
var xhr = new XMLHttpRequest();
var fD = new FormData();
xhr.open("POST", "path/upload");
//This ...