Jehad Ahmad Jaghoub
Jehad Ahmad Jaghoub

Reputation: 1383

inplace edit question

i have a very nice inplace edit

mootools inlineEdit Plugin and you can test it on this link

http://dev.justinmaier.com/inlineEdit2/

but there is proplem in use it in my project becouse i use jquery and i try

jQuery.noConflict();

but didn't work because the code is too complex i like the mootools because it make text with all style not need input box or update just one click to edit and edit when the text still have style :)

so it is possible to have same effect use jquery ? ?

Upvotes: 0

Views: 182

Answers (1)

FishBasketGordo
FishBasketGordo

Reputation: 23142

After you call jQuery.noConflict[API Ref] you need to use jQuery to create your jQuery objects, not $. Then, MooTools and jQuery will play nice together.

Upvotes: 1

Related Questions