Yes, web developers don’t use straight HTML because for anything that is not trivial, it’s not sufficient The web today is a place to DO things, not READ things. Even if you are displaying “static” data, Javascript frameworks and libraries can help you write code once and then offload browser compatibility and desktop/mobile presentation formats.
If you add all the interactive elements, it gets even more complex. HTML is powerful and provides transparency, but it’s not just the MBA crowd moving away from it.
Also, as desktop applications are quickly being deprecated for browser-based apps, there is more movement to frameworks, and libraries.
Did you mean to respond to someone else? I didn’t say devs shouldn’t use javascript, I just said that the linuxmint website does, in response to the person above me saying it doesn’t.
deleted by creator
umm, that page loads several javascript files. jquery, popper, bootstrap, etc.
Yes, web developers don’t use straight HTML because for anything that is not trivial, it’s not sufficient The web today is a place to DO things, not READ things. Even if you are displaying “static” data, Javascript frameworks and libraries can help you write code once and then offload browser compatibility and desktop/mobile presentation formats.
If you add all the interactive elements, it gets even more complex. HTML is powerful and provides transparency, but it’s not just the MBA crowd moving away from it.
Also, as desktop applications are quickly being deprecated for browser-based apps, there is more movement to frameworks, and libraries.
Did you mean to respond to someone else? I didn’t say devs shouldn’t use javascript, I just said that the linuxmint website does, in response to the person above me saying it doesn’t.
You made a good observation to which I put observations. Probably should have been put somewhere else.
deleted by creator
It loads these JavaScript libraries:
<!--Global JS--> <script src="web/wizixo/template/assets/vendor/jquery/jquery.min.js"></script> <script src="web/wizixo/template/assets/vendor/popper.js/umd/popper.min.js"></script> <script src="web/wizixo/template/assets/vendor/bootstrap/dist/js/bootstrap.min.js"></script> <script src="web/wizixo/template/assets/vendor/jquery-easing/jquery.easing.min.js"></script> <!--Vendors--> <script src="web/wizixo/template/assets/vendor/fancybox/js/jquery.fancybox.min.js"></script> <script src="web/wizixo/template/assets/vendor/owlcarousel/js/owl.carousel.min.js"></script> <!--Template Functions--> <script src="web/wizixo/template/assets/js/functions.js"></script>
Sorry, I can’t seem to get the formatting right.