FireBug notifies me the following error:
TypeError: missing argument 1 when calling function less.watch
less.watch();
This is what I include in my HEAD section of webpages:
<script type="text/javascript">
less = {
env: "development"
poll: 1000
};
less.watch();
</script>
My inspiration derived from this link:
Where am I wrong?