Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // Move interwiki language links template to sidebar
  2. $(document).ready( function () {
  3. if( document.getElementById("p-lang") ) {
  4. document.getElementById("column-one").appendChild(document.getElementById("p-lang"));
  5. // Replace div with h5 to pick up formatting
  6. var pLangContent = $("#p-lang").children().first().html();
  7. $("#p-lang").children().first().replaceWith("<h5>" + pLangContent + "</h5>");
  8. }
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement