문제

I am working with one jquery for sort div using its row and column attribute.

See this fiddle

> See below fiddle link

Fiddle

This will work fine with Firefox and it will not work with chrome.

Can you please let me know what is the problem in this?

Thanks in advance.

도움이 되었습니까?

해결책

Finally i got my answer.

$('#swappable > span').sort(function (a, b) {
  var ar = a.getAttribute("row");
  var ac = a.getAttribute("col");
  var br = b.getAttribute("row");
  var bc = b.getAttribute("col");

  if(ar > br)
  {
    return ar > br;
  }

  if(ar === br)
  {
    if(ac > bc)
    {
      return ac > bc;
    }
  }

}).appendTo('#swappable');

Please check below Fiddle

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top