php - What is used to code this site?

Solution:
The web in question uses MooTools and possibly an extension for it to achieve the drag+drop effect. Check out their builder site to build the functionality you'll need for your website.
As for database updating, it's not a question of what they use. You will need to devise your own database schema and backend for it (PHP, ASP.NET, Ruby...).
Answer
Solution:
-- id = Id of content what u drag--
$("#id").draggable({
revert: true
});
-- id= Id of content where u drop--
$("#id").droppable();
$("#id").droppable({
tolerance: 'touch',
over: function () {
$(this).css('backgroundColor', '#cedae3');
},
out: function () {
$(this).css('backgroundColor', '#a6bcce');
},
}
);
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: too few arguments to function laravel
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.