I am building an application which uses Following features in it.
- Popup Window
- Transition effects.
- Heavy contents in popup Window(like thousands of tags).
- Pipelining for client server communication.(like BigPipe in Facebook)
- Faster to switch between pages.
In this case,
Is Prototype more superior than mootools?
Is there any other more powerfull frameworks i should use to build the application?
None of these features are delivered out of the box in Prototype, jQuery or MooTools.
For app development, consider to use OOP and build modular components. This maybe easier in frameworks that provide OOP structures including Events and Options like MooTools does but it also not impossible in Frameworks without OOP, like jQuery. You would plug in stand-alone Class inheritance and create your own modular namespaces. You and your team just need to be more strict, otherwise its easy to end up in a stack of chained spaghetti code.
One of the downside in non-OOP frameworks is, that you can not extend/inherit existing framework code to plug in your own solution. jQuery provides a huge UI library, with varying quality of code; but you will be mostly stuck with options, events and features those plugins provide out of the box, unable to extend or reuse their internals.
OOP frameworks support the roll-your-own idea, helping with a lot of modules; while jQuery developers tend to just-solve-the-problem … by including a lot of different UI plugins.
Strong OOP framework with modular dependencies: MooTools, Dojo, YUI, Closure Library.