JavaScript is the original and common name applied towards most flavors of a scripting language that originated on NetScape Navigator. Use this tag for questions regarding common implementations of ECMAScript, JavaScript, JScript, etc. JS does not typically refer to its ECMA-cousin, ActionScript.
-2
votes
1answer
53 views
how to control sleep, shutdown,hibernate,and lock signals on windows?
what exactly happens when we press any of the above buttons and what kind of signal is generated in windows and how to control it?
I'm assuming those buttons are generating interrupts of some sort. ...
-4
votes
1answer
41 views
What JavaScript framework should i learn to improve my JS skills [on hold]
Sorry for English mistakes:
I am a front end web developer (more than 3 years exp.) and I am working with JavaScript (jQuery, Ajax, prototype.js), and now I want to enhance my JavaScript skills so... ...
3
votes
1answer
356 views
Objects of different programming languages
Apparently, there are some resemblance between objects in JavaScript and dictionaries in Python. Each language defines an object a little different (and there is some logic that all definitions to be ...
1
vote
2answers
57 views
Exception logging on client for javascript
Is there any codesnipet/sample/component/lib available for javascript exception logging at the client side? i know console logger but that's not what I'm asking for. I'm looking for some ...
0
votes
1answer
43 views
Is there any way to limit the scope of a knockout.js application? [on hold]
I have a legacy project which I have been approved to work in a knockout.js module. This is great, however the application is extremely complex and I need to use some of the pre-built form validation ...
-2
votes
0answers
26 views
Integrating V8 JavaScript Engine in software application [on hold]
I want to do a project in which I want to integrate V8 JavaScript Engine. But I have short of ideas on what can be done after integrating the JS engine. I want an idea so that I can develop an ...
-3
votes
0answers
23 views
Is this the best way to integrate and use the Facebook API toolset in my quiz game
Im currently building a simple time based quiz game with Javascript. In this game im looking to enable the option of being able to challenge your facebook friends.
This has naturally had me look at ...
0
votes
0answers
27 views
How can I create multiple instances of a feature in AngularJS?
I'm creating a time tracking app in AngularJS simply to learn the framework. I'm attempting to create the ability to add multiple timers within a single view by clicking an 'add' button. Each timer ...
-4
votes
0answers
38 views
givan fade effect to slider, but when it change from one image to another image, the widgets placed after slider on the webpage clashes [closed]
my widgets clashes with slider put on the home page, when changes, widgets also keep changing its position,developing website using html,css,js,and php.
i wrote below code under body in html
...
2
votes
0answers
41 views
Practices for domain models in Javascript (with frameworks)
This is a question I've to-and-fro'd with for a while, and searched for and found nothing on: what're the accepted practices surrounding duplicating domain models in Javascript for a web application, ...
-1
votes
0answers
46 views
What to check/study for Web Development? [duplicate]
for the needs of some projects i ll need to get into web development client & server side in order to build up a few websites and some custom server side apps.
i ve got more than 20 years ...
0
votes
0answers
18 views
Getting tons of javascript errors in IE10, but no other browser [migrated]
I have been developing an ASP.NET web application on a computer with Windows 7. I have been testing on Firefox, Chrome and IE 7 and 8 using IE tester and IE 9 natively. All has been well. Today I got ...
0
votes
0answers
139 views
JavaScript Dominance, Why? [closed]
It seems strange to me that one language should have a virtual monopoly on client-side programming.
My question:
What about JavaScript, if anything, makes/made it practically the language for ...
-1
votes
0answers
22 views
JavaScript rollover error IE10 [closed]
I've been handed an ancient website to manage and I'm having problems with JS rollovers.
http://nvt.org.uk/
The menu rollovers don't seem to be working in IE10. All other browsers seem to be ...
0
votes
0answers
47 views
Javascript function declaration within function with same name [migrated]
I've just seen this pattern in javascript:
var test = function () {
function test(args) {
this.properties = args || {}; //etc
}
}
test.prototype.methodName = function (){} //...etc
...