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
How to show progress bar or any other animation when call window.open()
I am using window.open() like
var courseId = $courseId;
var exportURL = "scormExport.do?courseId="+ $courseId + "&exportPlayer=true&exportAssets=true&exportJson=true";
window.open( ...
0
votes
0answers
12 views
jquery: detect when one of the elements of each function is empty
I'm doing in my js file:
var aryYears= [];
$(".year").each(function(){
aryYears.push($(this).val());
})
So I can send an array of years as a parameter in the saveChanges function.
...
0
votes
0answers
6 views
Loading module in a module, Javascript
I have a module that I load with the following method:
<script src="module_pathfile"></script>
Inside that module I want to load a bunch of other modules in the same way,
but when I do ...
0
votes
0answers
5 views
Flot charts: reduce redundancy in series
I use Flot charts with PHP. I get the data from an Oracle database.
Currently I cannot show more than a month data, because:
In one month I have 9216 data for one series
I have 20 series
In a ...
0
votes
1answer
14 views
HTML created but style = null
I run my script on a galaxy tab. I have a strange problem I create a HTML element (div) and once I try to acces to the style attribute, I have an error message telling me that style is null.
Here is ...
0
votes
0answers
10 views
How to handle jQuery UI sliders correctly?
I'm writing an web applicatoin that updates some jQuery UI sliders via JavaScript. I ran into many problems with update the slider after the initialization but solved the most. The following issue is ...
0
votes
1answer
12 views
How to get sortabletable.js to work?
I have downloaded the demos for sorting in a tabel here:
http://webfx.eae.net/dhtml/sortabletable/demos.html
I havn't changed the code. When running "demo-html".
I get the following error message in ...
0
votes
0answers
7 views
Responsive grid layout in repeater control
Hi below is my screenshot,(I am using Repeater control to display items from database)
but instead of this i want below grid layout without spacing between two items:
can anyone suggest any css ...
0
votes
3answers
25 views
Uploading files to the server using HTML5
I would like to know how can I upload a file after selecting it using HTML5 in that way:
<input type="file" .... />
The line above gives you the option to SELECT a file, now I need to upload ...
0
votes
0answers
6 views
Having trouble calling aspx from Ext JS 4.2
I am trying to make a call to an ASPX url; however, the return keeps coming back as a failure.
I have used this url in other programming projects, but this is my first time using it with Ext JS. I ...
0
votes
0answers
4 views
javascript updated table field transferred to bean as blank
using JSF 1.2.
after javascript function copy() correctly updates h:inputText field's value of a certain row of a session-scoped h:dataTable and returns true, user clicks on a h:commandButton and ...
-1
votes
5answers
23 views
jQuery select LI above element
I'm trying to select the list item above a button and change its parent's background-color to red.
<li>red bg on click <input class="addtocart" value="press" name="button"></li>
...
0
votes
0answers
4 views
Where is an accepted user data location in a ModernUI App?
I need to store what would probably be considered user data for a Windows 8 app. It consists of information about a set of college classes, each with several attributes, and several additional lists ...
0
votes
1answer
10 views
Compiling trivial python program to javascript using cython and emscripten on mac
I am trying to generate javascript from python using cython and emscripten.
hello.py:
print 'Hello world.'
Then I compile this to c using cython
>>> cython --embed hello.py -v
This ...
0
votes
1answer
11 views
Trying to add <script> tags to an embeddable code
I'm trying to add a script that adds an embeddable code to my website, and that code includes the script tag. However, as soon as I add the closing tag, the code stops rendering. Here's what I'm doing ...