Search Results

16
votes
7answers
3k views

Embedding JavaScript engine into .NET (C#)

Hi, just wondering if anyone has ever tried embedding and actually integrating any js engine into the .net environment. I could find and actually use (after a LOT of pain and effor …
0
votes

Pretty printing XML with javascript

what about creating a stub node (document.createElement('div') - or using your library equivalent), filling it with the xml string (via innerHTML) and calling simple recursive function for the root …
2
votes

What is the problem with this ajax(with prototype)?

Have you tried another version of Prototype? It seems to me, there's a weird bug in constructing the post request body effectively creating invalid (partly) request the server cannot properly parse …
1
vote

Use canvas tag or create a bunch of <div’s> Whats faster?

I'd personally go for canvas (excanvas.js for VML emulating in IE will do the job). For simplicity and future code expansion reasons. The trouble is, while browsers with native canvas impl …