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.
-1
votes
0answers
2 views
Show hide divs synchronized to flexslider timer
I'm using WooThemes canvas and want to show and hide a series of divs as the slider advances.
Here's the web page. http://development.quicksilver-direct.com/cheyennehills/ What I want is to ...
0
votes
0answers
9 views
Ticked checkboxes listing elements that contain its name
I would like to make the following:
Description
When a checkbox under Ingredients selection is checked only the dishes should be shown in which the checked ingredient is used in. Checkboxes are ...
0
votes
0answers
11 views
Transliteration in typeahead.js
Firstly, please check this: http://ws.luyencong.net/data/search/query.php?do=advanced
You can paste all the content of that JSON to here : http://pro.jsonlint.com/
Now you can see the content of ...
0
votes
0answers
17 views
Not able to access JSON data in ajax jquery
I have a Jquery AJAX POST method.Which call a web method of asp.net.
The ajax method get a json data.
The data format is :
[
{
"Title": "Test2",
"Name" : "AMIT",
"IsRoot": ...
0
votes
2answers
14 views
jQuery options for method stop working
I'm not sure if the question were asked already but I've live example so I hope my question may be useful. Here I've custom plugin for jQuery:
(function($){
jQuery.alertSay = function(options){
...
0
votes
0answers
7 views
contenteditable change event in IE 7 and 8
Just like this other question, I want to be able to call a function when the user changes the contents of a contenteditable DIV. However, I want to support IE 7-10. IE 7 and 8 do not support the ...
-3
votes
1answer
35 views
What is the difference between using jQuery and plain Javascript? [duplicate]
Can somebody explain to me what the difference is between these two examples:
var obj = getElementById("id1"); // without jQuery
var obj = $("#id1"); // with jQuery
Is the returned value in both ...
0
votes
1answer
10 views
Troubles with knockoutjs binding
I'm new to knockoutjs, and my bindings are not working. Nothing is displayed.
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
0
votes
0answers
7 views
How do I open a file in google drive using its api?
I'm trying to display a text file from google drive in a textarea.
From what I understand there is no direct way to do it; you have to download it using xhr request. I have tried the code that google ...
0
votes
1answer
37 views
Parse Json, error in the executing
I'm trying to execute a javascript request:
var s = document.createElement('script');
s.src = "https://api.instagram.com/v1/media/popular?client_id=" + client_id + "&count=12";
...
-2
votes
0answers
24 views
How do you make a css3 selector engine with javascript [on hold]
I have been working on a JavaScript library. It will work like this when it is done:
_(selector).hide();
Or something similar to that.
I want to make a css selector engine similar to the jQuery ...
0
votes
0answers
6 views
fb.api or fb.ui how to upload foto
I'm using Javascript, my application is publishing to Facebook using FB.ui and FB.api
Recently, I received a mail with the following content:
It looks like your app, (...) may be posting photos ...
0
votes
1answer
10 views
play .wav sound file encoded in base64 with javascript
Am able to play sound with javascript through the following,
var snd = new Audio('sound.wav');
snd.play();
This plays the required sound but sometimes it loads slowly or might not even load ...
0
votes
1answer
28 views
get function does not fetch data from dynamically created fields in form
I am trying to store data from dynamically created fields using PHP. The fixed fields are not a problem. I am having troubles in GET-ing the "flex" fields; that is, the fields a user can generate ...
0
votes
0answers
16 views
Uncaught Syntaxerror while using html template
I am using a html template and javascript to fill a div with a couple of Elements.
It all worked pretty fine until i tried to add an image to that template.
Now I'm getting following error ...