ערכתי לאחרונה בתאריך 29.11.07 בשעה 20:58 בברכה, akoka
הייתי משתמש במוכן אבל ביקשו להכין אז הכנתי=] קיצור יש את ה"COLOR PICKER" הזה שעובד מעולה בFF אבל בIE אין שגיאות אבל מקבל Blank =] function colorpicker() { var tbl=document.createElement("TABLE"); var ROW=document.createElement("TR"); var userColor=document.createElement("TD"); var Input=document.createElement("INPUT"); ROW.setAttribute("valign","bottom"); ROW.setAttribute("id","colortd"); Input.setAttribute("type","text"); Input.setAttribute("id","rgbId"); var inputValue="red"; tbl.setAttribute("style","position: absolute;background-color: white;border: 1px solid black;"); tbl.cellspacing="2"; tbl.cellpadding="2"; tbl.setAttribute("width","100"); tbl.setAttribute("height","100"); userColor.height="100px"; userColor.width="100px"; function initalize() { document.body.appendChild(tbl); tbl.appendChild(ROW); ROW.appendChild(userColor); userColor.appendChild(Input); userColor.onkeyup=function() { document.getElementById("colortd").style.backgroundColor=document.getElementById("rgbId").value; } } return initalize(); }
|