อยากรบกวนถามครับ พอดีว่ามีปัญา javascript ตอนอัพโหลดไปบน server -linux
ตอนรันไปบน server มีโค้ด javascript แสดงผลเป็นตัวอักษรบน browser ครับ
ถ้าลบ javascript ไปจะไม่แสดงผลอะไรทั้งสิ้นครับ
นี้คือ script ที่ผมหมายถึงครับ
<script>
// Amazing Frameless Peeker Window
// (C) 2001 www.CodeLifter.com
// Free for all users, but leave in this header
// ----------------------------------------------
// set the popup window width and height
var windowW=214 // wide
var windowH=300 // high
// set vertical offset if you want the popup
// to rise above or stop below screen bottom;
var Yoffset=0 // in pixels, negative values allowed
// set the vertical motion parameters
var windowStep=2 // move increment (pixels)
var moveSpeed=10 // move speed (larger is slower)
// set the horizontal positioning of the window
// choices are left, center, right
Xmode="right";
// in left or right Xmode, set any offset from
// the screen edge here, if desired
Xoffset=35;
// set the url of the page to show in the popup
var urlPop = "yourpage.html"
// set the title of the page
var title = "This Is A Frameless Peeker";
// set this to true if the popup should close
// upon leaving the launching page; else, false
var autoclose = true
// ============================
// do not edit below this line
// ============================
var windowX = (screen.width/2)-(windowW/2);
if (Xmode=="left") windowX=0+Xoffset;
if (Xmode=="right") windowX=screen.availWidth-Xoffset-windowW;
var windowY = (screen.availHeight);
var windowYstop = windowY-windowH-Yoffset;
var windowYnow = windowY;
s = "width="+windowW+",height="+windowH;
var beIE = document.all?true:false