Jump to content

change div display order using javascript? (starter add/remove code included)


ultrus

Recommended Posts

I'm creating a photo gallery admin page where photos can be rearranged once added. Without reloading the whole page using php to change sort order, is there a way in javascript that I can move <div> siblings over and under each other dynamically? Here's some starting code that will append and remove items. Now I just need to be able to sort them:

 

<script type="text/javascript">
var itemInt = 0;
function addItem() {
	var itemDiv = document.getElementById('items');
	var newDiv = document.createElement('div');
	var newID = 'item' + itemInt;
	newDiv.setAttribute('id',newID);
	newDiv.innerHTML = 'You added me! I\'m known as ' + newID + '. <a href="javascript:;" onClick="deleteDiv(\'' + newID + '\');">[-] Delete This</a>';
	itemDiv.appendChild(newDiv);
	itemInt++;
}

function deleteDiv(theDiv) {
	var itemDiv = document.getElementById('items');
	var deadDiv = document.getElementById(theDiv);
	itemDiv.removeChild(deadDiv);
}
</script>

<div id="items"></div>

<div><a href="javascript:;" onclick="addItem();">[+] Add Item</a></div>

 

Any ideas on this? Thanks much in advance. :)

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.