<!DOCTYPE html> <html> <head> <title>test</title> <style type="text/css"> </style> <script type="text/javascript"> function Go(Obj) { var o=Obj.parentNode var oe=o.childNodes var i for (i=0; i<oe.length; i++) { if (oe[i]==Obj) break o.appendChild(oe[i]) } } </script> </head> <body> <ul> <li onclick='Go(this)'>Раздел 1</li> <li onclick='Go(this)'>Раздел 2</li> <li onclick='Go(this)'>Раздел 3</li> </ul> </body> </html>
<!DOCTYPE html> <html> <head> <title>test</title> <style type="text/css"> </style> <script type="text/javascript"> function Go(Obj) { var o=Obj.parentNode var oe=o.childNodes if (Obj!=oe[0]) o.insertBefore(Obj,oe[0]) } </script> </head> <body> <ul id="ff"> <li onclick='Go(this)'>Раздел 1</li> <li onclick='Go(this)'>Раздел 2</li> <li onclick='Go(this)'>Раздел 3</li> </ul> </body> </html>
$("#menu").delegate("li", "click", fuction(){ if ( $(e.currentTarget).prev() ) { $(e.currentTarget.parentNode).prepend($(e.currentTarget).remove()); } })