מ. רובין
יצירת דף עם התוכן "←פונקציות כלליות: ←פונקציה המוסיפה פריט רשימה: function createOptionElement( select, text, disabled ) { var option = document.createElement("option"); select.options.add( option ); option.innerHTML = text; option.title = text; if( disabled ) { option.disabled = true; } return select; } ←פונקציה המוסיפה כפתור לסרגל הכלים: function addEditButton..."