Jquery sortable element should move only up-down not left or right -


i using jquery sortable function li within ul tag, when dragging , dropping elements within ul, wanting can not dragged left or right within ul. should dragged , down.

try this:

$( ".selector" ).sortable({ axis: 'y' });

from docs:

if defined, items can dragged horizontally or vertically. possible values:'x', 'y'.


Comments

Popular posts from this blog

Python __call__ special method practical example -

How can I edit my VIM config so that Vim treats ".ejs" files the same as it currently treats my html files? -