Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I had a look at Backbone.js and while it's a great product, I don't like the binding to jQuery/Zepto for Controller navigation.
I know that I can use things like Models/Collections in Backbone without jQuery, though I do want to use the routing in Controller and not reinvent the wheel myself.
So my question is whether there are any lightweight MVC frameworks which are preferably JS-framework agnostic, or, in worst case, support Prototype/MooTools?
Backbone's jQuery integration is just a light dependency -- it's not required. If you don't want to use Views or Controllers (i.e. -- no DOM Manipulation or Ajax persistence), and just stick to Models and Collections, you can use Backbone perfectly well without including jQuery at all.
Jerome Gravel-Niquet also has done the legwork to build a version of Backbone that's backed by Mootools instead of jQuery:
https://github.com/jeromegn/backbone-mootools
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I would like to know if there are any javascript projects which help to give a "tour"
within a new web interface.
E.g. when Google changes interfaces in popular apps like gmail or maps you usually have the option, when you visit the first time, to see tipps/hints/videos etc. what you can do where.
Some Android/iOs Apps do this kind of introduction as well.
I would expect, that you could maybe define some events, that need to be triggered until you get to the next step and other events that trigger notifications/popups of any sort.
I found it hard to google for such functionality. Maybe this doesn't exist and I need to write it from scratch
There are several:
Intro.js
Bootstrap Tour
Joyride
Hopscotch
Pageguide
Found that list here.
I can recommend:
http://bootstraptour.com/
http://revaxarts-themes.com/tour/
Both are easy to use and good explaind :)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I bought a responsive admin panel template built with bootstrap. I have a question:
What is the best way of using tools to implement jquery calls to a webservice to update stats and the rest of functions on the page. I also used to it in notepad++ but I need more efficient tools for developing javascript and adding it to the .html files of the admin panel.
if you can pay for license then webstrom is best.
I am from java background therefore I use eclipse ide
The tool you use is your own choice. Some people will feel better on notepad++, other better with Sublime Text,...
You have to try them to make your own opinion and choose the one you feel most confortable with.
The code predictor you're talking about is called intellisense.
Take a look at this question. It seems to be quiet similar as your question : https://stackoverflow.com/questions/925219/best-javascript-editor-or-ide-with-intellisense-and-debugging-possibly
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a lightweight Tree-Implementation for Html(5) and JS that supports at least:
Custom rendering of "nodes"
Drag'n'Drop of nodes
The idea of being lightweight is that, besides jQuery, there should be no other dependencies for the tree, including but not limited to have no dependencies on jquery-ui at all.
I wasn't able to find any else than either jquery-ui based or commercial or huge codebase or without the given requirements.
thanks
jsTree plugin is a great and very recommended JS library for implementing trees in HTML pages.
It supports JSON data, drag-n-drop and much more related features...
Take a look at its demo page: http://www.jstree.com/demo
As for HTML 5 support, take a look at this ticket: Feature-Request: HTML5 attributes for metadata
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I develop my site and want maximum performance with less code. How I can minify jQuery library throught remove additional functional? Not just minify this library.
Google Closure can do it? Alternatives?
Sorry for bad english!
Custom jQuery Builder - http://projects.jga.me/jquery-builder/
jQuery 2.0 - http://blog.jquery.com/2013/04/18/jquery-2-0-released/
Zepto.js - http://zeptojs.com/
Honestly, this list could go on and on, but it depends on whether you need full jQuery, what exactly your code requires, if you are using any plugins which rely on that code. It's really up to you to decide what can be removed and what can't
Removing functions in jQuery, even if you can does not give you additional performance. What you want is probably reduce the amount of bandwidth that the library will take by minifying it(well, you already know that don't you?) or loading it off a CDN. You may also want to take a look at zepto.js, a smaller and compact jquery compatible library.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
What I'm looking for is something similar to this ASP.net Ajax Control.
However, I need a solution that uses only free technologies (e.g. PHP, Javascript).
I like TinyMCE
Have you checked CKEditor (ex FCKEditor). This is one of the most powerful editors. But it depends what your end users are. If they're developers then consider something similar that SO uses (WMD Editor). Much easier and faster to use. SO guys actually changed it to some degree but the original was used at first.
Basically you don't need it to tie to any server-side technology as long as it's programmable on the client side.
Probably the most popular is the FCKeditor - now renamed CKeditor.