here are three sections to jsfiddle CSS, Javascript and HTML so there should be a way to have an HTML file with three sections which say Drop CSS code here, Drop HTML Here and Drop Javascript here. It doesn't work yet but currently I have
<html>
<head>
<title>Some Title</title>
<style type="text/css" media="screen">
<!-- CSS Section From JSfiddle Goes Here -->
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"> </script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// Javascript Section From JSfiddle Goes Here
});
</script>
</head>
<body>
<!-- HTML Section From JSfiddle Goes Here -->
</body>
</html>
It seems like this would be an easy thing do do mindlessly like it could be automated or can it ? Seems like a lot of people are are finding the examples at JSfiddle not helpful because there is some magic going on at JSfiddle which they are not sharing with us.