I have a site that I am using prototype and scriptaculous on. One one page of my site, I would like to use Digitarald's FancyUploader (I have not found anything else that is as elegant, and offers multiple file selection). Is it possible to use the two on the same page? If so, how would I do it?
相关问题
- Mootools and ExtJs 4.x seem to be incompatible, ho
- Instantiate a Class dynamically via variable
- HTML5 - Select multi required-checkbox
- PrototypeJS version 1.6.0.2 Overrides JSON.parse a
- Prototype click, mouseover and mouseout can't
相关文章
- Why is my dropzone javascript form not working?
- Disable link with the prototype observe method
- Ajax GET requests: use parameters or put data in U
- How do I avoid this jQuery files conflict?
- Prototype plugin for dynamically expanding textare
- Jsonp with MooTools
- How to convert this observe_field to jquery
- mootools: I want to implement architecture similar
There is no way to run a Mootools script with prototype.
While Mootools provide a dollar-safe mode, that mode only provided compatibility with frameworks that provides a
$()
function.The reason why Mootools and prototype are incompatible is that they both extend native JavaScript natives with their own methods. Unfortunately, there is no way of overriding this behavior.
SWFUpload is an alternative solution which is compatible with pretty much all JavaScript frameworks. It is pretty much functionally equivalent to FancyUpload. You might want to consider it as an alternative solution. If not, you'll have to make a choice between Mootools and prototype.