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
7 views
Upload excel file via ajax and parse in php
So I'm trying to upload an excel file via ajax to a remote server.. I've been researching and haven't found anything that is suiting what I'm trying to do.
What I've checked:
...
0
votes
0answers
9 views
Languages compiling/interpreting to Javascript (such as Ruby/Python/Coffescript)
Newbie self-learner here with questions.
Ruby and Python seem to have offshoots that compile their respective code to Javascript (i.e. Opal/Pyjamas). If I can get an understanding of how ...
0
votes
0answers
14 views
Same function for different sections - relative referencing in jquery
By using relative references I am able to remove items which have been added to the list within a specfic part of the form. For example, by adding a requirement it can be deleted just from the ...
0
votes
4answers
54 views
Use javascript variable as img src
I am using the facebook Api to get some album names and their cover photos. From this names and photos i am trying to create a jquery Mobile page that presents them in a list.
Some of my javascript ...
-3
votes
1answer
38 views
2 java scripts in one single html page [closed]
I have made 2 diferent javascripts (dreamweaver cs6)
1 is for a nav bar and the other one is for a verticalscrolling
My question is how to make the two js working at the same time.
0
votes
0answers
6 views
Replacing a string with an image within flexslider.js
So I have been trying to use @font-face to try and style the directional arrows of this website and haven't had any luck. All my other @font-face has been working but this one won't. So I need to add ...
0
votes
0answers
6 views
draggable jquery-ui-dialog with textarea in mobile devices using touch-punch plugin
I use jquery-ui-touch-punch plugin, so that I could drag my jquery-ui-dialog properly on Iphone/Android etc.
$.ui.dialog.prototype._makeDraggable = function() {
this.uiDialog.draggable();
};
...
0
votes
2answers
38 views
getElementById() returns null although element exist
This is my code:
<html>
<head>
<title>Demo</title>
<script>
function show()
{
var content = document.getElementById("content");
var sub = ...
0
votes
0answers
6 views
Getting Error while creating Signal R Hubs
I am getting below java script error when i am using signalR for creating Hubs Dynamically. I am using "jquery.signalR-1.1.2.js" .
"Microsoft JScript runtime error: Object doesn't support property or ...
0
votes
0answers
20 views
Parse an arabic JSON tweet with javascript
I'm writing a javascript code that would retrieve a tweet and display its info. I have the tweet id, and I'm using the Twitter API to access the tweet's info. The problem is when the tweet has Arabic ...
1
vote
1answer
25 views
How do I make this script appear/activate a few seconds after loading?
I would like this script to appear online after the page has loaded 10 seconds in. It uses jquery:
<script type="text/javascript">
$(document).ready(function($){
var cookieSet = ...
0
votes
0answers
8 views
Viewport show hide function
When I go to viewport < 540px I need to hide .blokken, that works.
But < 540px when I click on the bullet I need to troggle show/hide .blokken
Above viewport 540px the troggle works, below the ...
1
vote
4answers
45 views
detecting OK on alert
I used this code:
<script type="text/javascript">
function finish()
{
alert("Inserted!");
}
</script>
I want when the user clicks on "OK" of alert,it goes to another php ...
0
votes
0answers
21 views
i need to add a js. confirm box, it must match CSS of page
Hi well i tried to add a confirm box to match CSS of the page, i tried using a JQuery plugin for the function, but it never really matched the CSS of the page and i find it complicating to touch the ...
2
votes
1answer
26 views
Button no longer fires function after being used once
I have a table / tbody / row that, when a user clicks on "Add Product", I want that row to be cloned and pasted underneath the previous row. In other words, the user is adding journal entry items.
...