The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
5answers
48 views

Scope resolution in Javascript using 'with' keyword

There seems to be a strange behavior in Javascript with hoisting and scoping , when using 'with' keyword. I understand the usage of 'with' is considered taboo, but came across this in one of the ...
2
votes
3answers
32 views

How to convert type Object from engine.eval to type int

My program takes a String input and calculates it using engine.eval() from ScriptEngine imports. How do I convert the evaluated value to type int? import javax.script.ScriptEngine; import ...
0
votes
2answers
67 views

the safari javascript engine in webkit

I was recalled that the webkit javascript engine called "JavaScript core" by my friend, however, when i searched around the answer is that safari runs SquirrelFish as its JS engine. My friend told me ...
2
votes
1answer
118 views

How to access JavaScript execution trace at runtime in Firefox?

I want to know how to access JavaScript execution trace at runtime. I saw Firebug can do something like this: Refer to the image above, all the line numbers executed are highlighted in green. They ...
0
votes
1answer
100 views

A Windows application which uses Rhino JavaScript engine?

Is there a Windows application and a solution which is an IDE, and can execute the JavaScript sources, as if it is in Mozilla Firefox, meaning that it uses Rhino JavaScript Engine. Except Mozilla ...
1
vote
1answer
310 views

Rendering a javascript webpage page with phantomjs

I am trying to render a a javascript evaluated source code from a website using phantomjs. But every time I try i only get the source code as is (similar to view source from the browser). What I ...
1
vote
1answer
188 views

Javascript engine to parse and run Javascript web page (perl/python)

I have been trying since long to parse and run javascript webpages using python(2.4). Unfortunately I cannot use qt,webkit so most of the python based headless browsers are ruled out. I however ...
5
votes
2answers
268 views

How does Object.observe() affect performance?

The Object.observe() JavaScript API allows any piece of code to receive change notifications for all property changes of any JavaScript object. Doesn't this severely affect the code generation and ...
-1
votes
1answer
78 views

please help me to make this browser JavaScript enable anyway [closed]

Can anybody please underline the steps how to integrate a JavaScript engine(any) in this browser(CODE MENTIONED BELOW). or a webkit to make this browser run JavaScript. //a simple web browser ...
1
vote
1answer
26 views

Can spidermonkey be compiled without math support?

My libm does not have sin and cos functions. Is there a configuration switch that enables me to compile spidermonkey without the Math.* function of JavaScript? Regards
0
votes
0answers
45 views

How to parse Javascript text in C? [duplicate]

I have some Javascript text, but I have to parse it and get the output in C . I searched the net and found many JS Engine s but most of them were only for C++, like V8, Spidermonkey, etc. Can you ...
1
vote
2answers
45 views

What happens to the bound event when the DOM element vanishes?

What happens when I bind an event handler to a DOM element and then subsequently destroy the DOM element? Do I have to go through a process of unbinding the event handlers? <div id="el1"> ...
0
votes
0answers
97 views

Javascript engine : Chrome's V8 Vs other engines [closed]

Different browsers use different Javascript engines for executing the JS code. I have heard that currently the one used by Chrome (V8) is the best in terms of execution. Could you please explain ...
4
votes
3answers
389 views

Are there any ports or alternative implementations of the node.js platform with JavaScript engines other than V8?

node.js is an open source server-side JavaScript platform based on Google's V8 JavaScript engine. It has been rapidly gaining popularity and importance for couple of years now. Now node.js is just a ...
0
votes
0answers
91 views

Benchmarking Javascript vs Actionscript

Are there standard code snippets used for benchmarking Javascript engines vs other technologies? Can you link to the JS benchmarking snippets described here ...
1
vote
0answers
133 views

Can I determine the JavaScript Engine from .js code?

Is there a way with the help of JavaScript code to know what JavaScript Engine is the one on which a snippet of code is run on? I don't want to get the browser type just the JavaScript engine.
4
votes
1answer
299 views

V8 profiling: linux-tick-processor not working with d8

I'm trying to get the v8 profiling and linux-tick-processor working on my ubuntu. Basically I have done these steps: $ git clone git://github.com/v8/v8.git v8 && cd v8 $ make dependencie $ ...
0
votes
0answers
207 views

Jenkins Ruby on Rails | Cannot find Javascript Runtime

I am trying to get a Ruby on Rails task to run in Jenkins. Everything runs fine when I just bundle install. When I run rake test it gives me the following error. [workspace] $ rake.bat test rake ...
3
votes
2answers
61 views

Scope of functions vs. code order in Javascript objects

Consider this HTML: <p>Click me</p> I would like to write an object with a click handler for each p, but run into the problem that my click handler function could not be found. This ...
1
vote
1answer
131 views

Can ScriptEngineManager give me the name of the Javascript function it has just compiled in Java

How do I find out the name of a javascript function parsed in Java. I allow a user to type in a Javascript function (in a JTextArea), then I use ScriptEngineManager to confirm it is valid syntax as ...
0
votes
1answer
165 views

When is a javascript engine (like Spidermonkey) going to build in a library like jquery, mootools, etc.. and how can anyone help this to come about?

We all know the great benefits that js libraries such as jquery and mootools etc. have contributed to web browsers and web development. These libraries are now included in a lot if not most of all ...
4
votes
2answers
179 views

What is the complexity of retrieval/insertion in JavaScript associative arrays (dynamic object properties) in the major javascript engines?

Take the following code example: var myObject = {}; var i = 100; while (i--) { myObject["foo"+i] = new Foo(i); } console.log(myObject["foo42"].bar()); I have a few questions. What kind of ...
0
votes
1answer
374 views

How to call javascript functions from blackberry native?

I am developing an app where i need to call some methods from blackberry native to javascript. when i click on back key down event , i want to trigger the onBackKeyDown() method, which is declared ...
0
votes
2answers
298 views

Unable to load new Page using window.location from java code

I have one interceptor, in which I hv to redirect to main Page if session is invalid. I want to use window.location for same, but giving error. My Interceptor is : @Override public boolean ...
1
vote
3answers
164 views

Javascript Processing in browser [duplicate]

Possible Duplicate: How does a JavaScript parser work? How do browsers compile Javascript scripts? What type of compiler it used?
-1
votes
1answer
175 views

Java scripting NoSuchMethodException?

I'm working on getting (JavaScript) scripting to work in Java. I have a program in JavaScript, defined in my Java program (along with instances of all the necessary script engine related things) like ...
0
votes
2answers
848 views

What are the differences between Firefox's Javascript engine and Chrome's V8?

I have found in some articles saying that FF's Javascript engine partially adopt Chrome's V8 feature ,or even some sourcecode are from V8! If so,can I say that replacing the Javascript engine in ...
1
vote
3answers
1k views

executing javascript code inside Android “java” application

I'm working on an Android app "native written in java" and I'm getting a response from a server the response is a javascript function I need to use this function to do some calculations inside my ...
4
votes
2answers
308 views

JavaScript code for Math object

I am developing a translator that converts JavaScript source into a target language. I am trying to implement JavaScript's Math object in the target language. If there is a JavaScript implementation ...
1
vote
1answer
192 views

Spider monkey : Why JS array is not inheriting default properties like length, splice etc

I am actually new to both spider monkey api and this mailing list. Actually I was trying to create a Array like objectA.arrayA and the call back code goes like this. char *value[] = {"abc", ...
0
votes
1answer
199 views

Same origin policy implementation in Google Chrome

I would like to know how and in which code module the Same Origin Policy for JavaScript is implemented in Google Chrome (V8). In Mozilla Firefox, the JS Engine (SpiderMonkey) has the provision of ...
2
votes
1answer
120 views

Threading in Spidermonkey

I am trying to enable a threaded debug dump in SpiderMonkey, by editing the jsinterp.cpp file. Basically, the things I am trying to do are as follows: Catch a JSScript before the main loop of ...
2
votes
1answer
884 views

iOS webapp performance safari vs home screen start

I read an article recently which states that web apps on iOS launched from the home screen running in full screen mode have slower performance than webapps running inside safari. Then I found a ...
0
votes
1answer
604 views

javascript internals: how events are implemented?

My question is related to how the JS engines implement the pattern of asynchronous events when we do something like bind event handlers on a dom for lets say a click event.? Do they have something ...
1
vote
1answer
588 views

Which JavaScript 2d engine for vertical scrolling game? [closed]

I need/want/have to write a simple game. It's basically about a person being dropped at great height, then falling and then he must avoid obstacles and shoot enemies. I'm not yet quite sure whether ...
0
votes
1answer
290 views

Setting gem path from ScriptEngineManager eval method

Is it possible to set my jruby's gem path from the ScriptEngineManager in Java? The problem is that I'm using a compressed jruby interpreter (jruby-complete.jar) and it's not possible to get this ...
1
vote
1answer
295 views

Modifying V8 JavaScript Engine provided with Chrome

I want support for a new API that is normally not supported by V8 JS Engine provided with Chrome. Is it possible to do this by tweaking V8 provided with Chrome. I'm open to using Spidermonkey which ...
2
votes
4answers
223 views

How can my HTML file pass JavaScript results back to a Python script that calls it?

I have a python script and this python script shall call an html-file (i.e. a web page) stored locally on the computer. The html-file does some calculations (jquery,javascript and so on) and should ...
8
votes
2answers
506 views

Does IE10 use JScript 10.0

@if (@_jscript_version == 10) document.write("You are using IE10"); According to Wikipedia IE10 will use JScript 10. JScript 10 seems to have a whole bunch of new proprietary extensions to ...
6
votes
6answers
442 views

Can IE interpret both JScript and JavaScript?

The window.setTimeout reference for IE states that setTimeout has an optional third parameter defining the language. The possible languages are JScript, VBScript and JavaScript. I already know IE ...
6
votes
3answers
3k views

How can I detect which javascript engine (v8 or JSC) is used at runtime in Android?

Newer versions of Android ( > 2.2) include the v8 javascript engine, while older versions only had JSC. However, according to ...
1
vote
2answers
184 views

Use custom SpiderMonkey build with firefox 5

I am trying to build and use SpiderMonkey I compiled (for my academic research) with firefox 5 on a windows machine, but when I try to run firefox I get "missing JS_InitCTypesClass function in ...
0
votes
1answer
141 views

How do I evaluate JavaScript before the browser does?

I am looking for a way to get javascript code before SpiderMoney (Firefox JS engine) or V8 (Chrome JS engine) evaluate the it. I don't mean capturing the traffic and get it before the application ...
8
votes
8answers
2k views

PHP Headless Browser? [closed]

Is there a headless browser library for PHP? Would like something that has a JS engine built into it. FOSS preferred.
3
votes
1answer
217 views

Is it possible to use a change the Javascript engine a Cocoa WebView uses?

I'm working on a html/javascript + cocoa hybrid app. From what I can tell, Cocoa's WebView uses the same javascript engine as Safari (Nitro). However, there's a couple of things in the V8 JS engine ...
27
votes
5answers
2k views

Why is new slow?

The benchmark: JsPerf The invariants: var f = function() { }; var g = function() { return this; } The tests: Below in order of expected speed new f; g.call(Object.create(Object.prototype)); ...
3
votes
7answers
1k views

Is there a javaScript engine where I can run my code without being forced to use a browser?

Is there any way to write and run a JavaScript code without having a need to run a browser and use its JavaScript engine? Thanks!
8
votes
1answer
451 views

What are Gecko's Javascript interpreter engine semantics?

Edit In consideration of the answer response below regarding the reference ECMAScript Language Specification - 11.13.2 Compound Assignment Considering why these, javascript: o=""; o = o + ...
0
votes
1answer
625 views

JavaScript Context in HttpClient

hi i need to Execute all the java Script on the page that i downloaded using HttpCleint Get method, which are the steps to perform the execution of the javascript containned on the page on the context ...
0
votes
1answer
423 views

SpiderMonkey JS Engine C Trouble

I'm a beginner at C and I was trying to use the SpiderMonkey JS Engine. I can't understand why it isn't working (the examples on mdc are not very helpfull) #define XP_UNIX #include <stdio.h> ...

1 2