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
21 views
AngularJS - would calling $apply() affect the performance when model becomes large?
I am new to AngularJS and I really like the way $apply() works. I am making a chat application now. Every time the client receives friends' messages, the model is changed without Angular notice and ...
0
votes
0answers
3 views
silverlight aspx crystalreport viewer javascript error: Expected ']'
i'm having an debug error on my silverlight crystal report using vs2010 (debug mode, not yet on IIS). the reportviewer is in an aspx page passing the parameters that crystal needs through querystring. ...
0
votes
0answers
20 views
What is issue with following code on iphone browser?
I have used jQueryCollapse plugin for displaying Questions and Answers.
Question is written on Tab and Answer is displayed when we click on tab.
When tab is active means when answer is displayed at ...
0
votes
2answers
31 views
Combobox within textbox HTML
I'm trying to achieve something like the iTunes search bar using HTML:
As you can see, I'm tring to create a filter list in a textbox.
I'm pretty experienced in HTML and CSS, but I've no idea how ...
0
votes
1answer
10 views
Minify many js files to one with yuicompressor
I have 2 js files: test1.js and test2.js. I want to minify it with yuicompressor to one file.
I tried:
./yuicompressor-2.4.7.jar --nomunge test1.js test2.js -o test3.js
But there is only one file ...
0
votes
2answers
32 views
JQuery add Checkbox not working
I am currently experimenting with the google chart api and jquery. I don't have any problems with the google chart api so far, however i have not been able to get jquery working. What I want to do is ...
0
votes
0answers
11 views
Sortable Doesnt work for Multiple Div
I want to do sorting of Div By drag & Drop method,
At this code when I will drag & drop any of the then the elements Get shifted last in the column But I just want to sort it according to my ...
0
votes
0answers
10 views
Magento 1.7.0.2 Customer Registration Form DOB field
I am trying to convert Magento input DOB fields to Select boxes and I found some nice code snippet in the internet which I implemented.
The problem is:
When the user fills the create an account form ...
0
votes
0answers
5 views
How to “autotune” a record sound with Javascript
I managed to record and play my voice like a dictaphone thanks to Cordova. Now i would like to add an "Autotune" or "Vocoder" effect on my voice, how can i do that ?
PS:I work on mobile device.
...
0
votes
2answers
11 views
How to restrict Print Screen Key for my website
How to restrict Print Screen Key for my website.
Is there any code in javascript, java applet or in C# which can restrict user to print screen.
For my web site page.
0
votes
0answers
14 views
Sorting collections using Backbone.js
I am trying to add a dynamic sort by to my collection using backbone.js.
At initialization the collection has the default sorting and the view is rendered. I made a button to test how to change the ...
0
votes
0answers
8 views
Redrawing elements ignores user-scalable=0 in Android Browser. Why?
This is the meta tag
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
Problem - I wanted to force a redraw (to ...
0
votes
0answers
6 views
Working with WebSQL. How to add new column to existing table?
I have simple websql database. One table 3 column.
I would like to add one more column, but I cant do it if database exist. Only After I clean it in cache. But I'm loosing all datas in this DB.
How ...
-1
votes
1answer
16 views
Populating dropdownlist using JSON
I am populating dropdownlist using JSON. Now when i try to change the selection, it is jumping back to the default option.
0
votes
3answers
27 views
How do I load a php include into a page with ajax whilst the page is loading
I have a php include which takes awhile to load because PHP has to fetch a lot of data. I don't want to slow the whole webpage loading waiting for this include so how can I load this one include with ...