Search Results

2
votes

Top-Rated JavaScript Blogs

nihilogic.dk, by Jacob Seidelin …
1
vote

JavaScript in Flash

Check out ExternalInterface, which lets you call javascript functions fr …
8
votes

Python html output (first attempt), several questions (code included)

It would not be overkill to use a framework for something like this; python frameworks tend to be very light and easy to work with, and would make it much easier for you to add features to your tin …
0
votes

how to prevent multiple form submit from client side?

Hash the current time, make it a hidden input on the form. On the server side, check the hash of each form submission; if you've already received that hash then you've got a repeat submission. …
0
votes

chop unused decimals with javascript

String(4) // "4" String(4.1) // "4.1" String(4.10) // "4.1" String(4.01) // "4.01" parseFloat works, but you've got to cast it back to a string. …
1
vote

JavaScript, stop additional event listeners

I'll start with the simplest answer that satisfies the constraints you've given so far. If it doesn't meet some condition you haven't yet specified, let me know and I'll update it. Only all …