A website for developing and demonstrating HTML/CSS/JS code
I accidentally stumbled upon an interesting site called JSFIDDLE:
http://jsfiddle.netOn it, you can write HTML/CSS/JS code, perform automatic validation of JavaScript code, and immediately see the results. Additionally, you can specify the JavaScript framework being used, such as jQuery (any version), which you can use in your code, meaning you don’t have to download jQuery.js. Overall, it's very convenient. You can then save the code, show it to others, and update it.
A brief description of the project from an interview with the site developer:
One of the great code-sharing tools was pastebin. It was simple and straightforward but quickly grew out of its usefulness. That's where jsFiddle comes in. jsFiddle is a fresh tool that not only displays the code and highlights it but also executes its code within the browser for even better debugging.
...
JsFiddle is a playground for web developers, a tool that can be used in many ways. One can use it as an online editor for snippets built from HTML, CSS, and JavaScript.
The code can then be shared with others, embedded on a blog, etc. Using this approach, JavaScript developers can very easily isolate bugs. We aim to support all actively developed frameworks - it helps with testing compatibility.
Here, for example, is a subtle blinking link made using jQuery:
https://jsfiddle.net/nKFEh/1/
Comments
Post a Comment