タイトルが参照しているように、この関数は document.ready 関数の後に追加された DOM 要素では機能しないようです。
新しい要素を追加して.window
いますが、この関数.window
はスクリプトの読み込み時に作成された要素しか処理しません。
追加された要素にも反応させるにはどうすればよいですか?
$(function() {
// Change this selector to find whatever your 'boxes' are
var windows = $("div.window");
// Set up click handlers for each box
windows.mousedown(function() {
var tz = parseInt($('#toolbar').css( "z-index" ), 10 );
$('#toolbar').css( "z-index", tz +1 )
var el = $(this), // The box that was clicked
max = 0;
// Find the highest z-index
windows.each(function() {
// Find the current z-index value
var z = parseInt( $( this ).css( "z-index" ), 10 );
// Keep either the current max, or the current z-index, whichever is higher
max = Math.max( max, z );
});
// Set the box that was clicked to the highest z-index plus one
el.css("z-index", max + 1 );
orderWindows(el);
});
});