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
6 views
Beginner JQuery Script looping error
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
setInterval(function(){
var i = 1;
while(i<3){
var ...
0
votes
0answers
2 views
Interacting with a dynamically created Flash button
I am doing some work on a code that requires me to interact with a dynamically created Flash button (using SWFObject) through client side JavaScript (namely GreaseMonkey) and I want to know if there ...
-1
votes
0answers
5 views
Windows Mobile 6.1 classic
I'm developing a small web apps using ASP.NET(VB). But it seems the browser of this handheld doesn't support new tab which is IE. I need your thought and recommendation please? The version of this ...
-2
votes
0answers
21 views
Is there a jQuery alternative to the following website? [on hold]
http://blackmagicfilms.squarespace.com/
I was hoping to get something like the gallery on the homepage. Has anyone seen this in a jquery version?
1
vote
2answers
22 views
how to generate random number in each rows and columns
i want to generate random number in each row and columns. i write below like this. it generate only two rows . I want to create 4*4 suduku. so that i given like this
<script ...
1
vote
0answers
24 views
What's the technology used by the tiles at stackoverflow.com's site list? [migrated]
I'd like to use the tech for stackoverflow.com's site list. The dynamic tile layout is really cool. I wonder how it is built.
After viewing the code, I just find jquery js reference.
Is it built ...
1
vote
1answer
20 views
different size divs align top left
CSS
#box1, #box2, #box3, #box4, #box5, #box6, #box7, #box8, #box9, #box10, #box11, #box12, #box13, #box14, #box15, #box16, #box17, #box18, #box19, #box20 {
position: relative;
list-style: ...
-1
votes
0answers
7 views
ResizeTo function not working properly in IE and Chrom anyOption for that?
i have a code that resize window , and prevent to min height:400 n width:650. it works fine in FireFox but in chrome automatically decrease window height to 0pix once it comes (in if Condition)to ...
-2
votes
1answer
32 views
use of auto increment in java-script
How can i transform this
this.subtrigger = this.el.querySelector( '.submenu' );
this.subtrigger2 = this.el.querySelector( '.submenu2' );
this.submenu = this.el.querySelector( '.sub-menu-wrapper1' );
...
0
votes
0answers
9 views
Drag and Drop over grid and revert back if size is greater than grid
The piece can be dragged and dropped to any part of the grid within grid area. If piece does not fit in the dropped grid area it should move back to its original position.
0
votes
0answers
15 views
jquery stopPropogation() not working as expected
here is my html :
<span class="checkbox checked replacement" tabindex="0">
<span class="check-knob"></span>
<input type="checkbox" ...
-4
votes
5answers
41 views
Remove white space between the string using javascript
I have string. I just want to remove all white spaces between all characters.Please reply
"PB 10 CV 2662" to "PB10CV2662"
0
votes
1answer
25 views
Asynchronous JavaScript using Callbacks
I am new to JavaScript and from various resources i have read that JavaScript functions are Asynchronous if they are coupled with Callbacks. After searching rigorously for 10+ days on web i could not ...
0
votes
0answers
10 views
animating html elements - flexslider
How do i animate html elements on each slide of flexslider after the animations of slides. Searched the internet for hours. Could not find any tutorial or something that can help. Couldsomeone show ...
0
votes
0answers
15 views
Pitch detection on array of floating point numbers
I'm doing voice recording in javascript, and storing the recording as an array of signed floats. What would I need to determine (and ultimately, adjust) pitch on the array? I've seen various ...