Are there any technical benefits to using a JavaScript menu? [closed] - javascript

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
_I've seen both pure CSS menus and JavaScript based menus and I can't see that there is anything gained using JavaScript.
Is there something I'm missing.
The google search pulls up SO articles from a good while back.
Here is an SO article from about 5 years ago.
What is the current state of CSS menus?

Unless you want something that can't be done with CSS, you gain absolutely nothing by using JS instead of CSS.
JS was the way to do animated things before CSS3 brought its transitions and animations, and is now becoming a standard because it's simpler and performs better (in those few things it can do).

Related

what coding format and standard should be followed while writing javascript library [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am working to build my own custom UI library providing a feature like customized form elements, cards, tabular view and much more, most of the feature is inherited from bootstrap. there is a lot of javascript code and I am looking for proper standard and format to be followed while writing any javascript library to make the code manageable and can be reused.

what practice is better using pure javascript & css is or using frameworks? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
being a student which practice is better using pure javascript & css or frameworks? And which is better for professional field?
Depends what you want to do.
Most of the times, what you want to build is already built by someone else so there is no need (and mostly, no time) to re-invent the wheel. Customers want results as soon as possible, so frameworks are good for prototyping.
But to get there, you should first try building things from scratch, so for learning you go with pure CSS and vanilla JS, and then build your knowledge of frameworks.

Do I need to learn OOP before learn Angular JS? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I have good knowledge of HTML CSS Bootstrap and Basic knowledge of Javascript & Jquery so do I need to clear all Object oriented programming before jump on Angular?
Yes you should, but not just because of angular. For complex applications an Object oriented Structure is always a good decision, because it will help you to represent an subset of the reality in your application

How to organise RactiveJS code [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I struggle to find any suggestions how to organize RactiveJs code.
Currently I just put RactiveJs code to the bottom of the page. It was okay till my scripts were small. But the bigger they are the more problem it causes. I'm considering moving the RactiveJs code to separate js files, may be using some pattern (Module?).
Are there any guidelines in this regards?
There is a spec for component-per-file: https://github.com/ractivejs/component-spec/ and there are loaders that allow you to incorporate them into the page.
However, Ractive doesn't force you to use this pattern. You are free to experiment whatever convention works for you.

JavaScript Framework Order? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
First post on this site, so bear with me.
I got a decent handle on jQuery, but then I tried to jump to Backbone.js and it was a little bit over my head. And I decided that I want to ease my way into it by slowly working up.
What order did YOU learn the Frameworks in?
Before learning jQuery, you can check these W3Schools tutorials:
http://www.w3schools.com/jquery/default.asp
http://www.w3schools.com/js/
A good resource for learning jQuery is on the jQuery Learning Center site: http://learn.jquery.com/. Especially, I would recommend you the JavaScript 101 Chapter for the beginning: http://learn.jquery.com/javascript-101/

Categories