Displaying 2 results from an estimated 2 matches for "randomid".
Did you mean:
random_id
2007 Mar 23
7
Lightbox-eske Dialogish Object
So, one of the things I''ve always wanted to do was expand upon the
simplicity of the Lightbox Gone Wild! object that the coders at
www.particletree.com put together months ago. I used it on an
application I wrote to organize my own picture albums on my localhost
web server, but I had to hack it apart to get it to do the things I
wanted it to do. I looked at the Prototype Window
2006 Jun 24
0
Sortable with sortables? this.destroy not a function O_o
...ntainer.
I have it like so (simplified):
var myLists = new Array(); // start a empty array for push
var mainDiv = ''main''; // some already present div to carry all stuff.
function newList() {
var sortlist = Builder.node(''div'', {id:''parent_''+randomId}, [
Builder.node(''ul'', {id:''childsort_''randomId})
]); // wrapping another div around the list for
dragging.
$(mainDiv).appendChild(sortlist); // append to dom
myLists.push(''childsort_''randomId);...