Click here to Skip to main content
15,889,852 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Can sessions still expire only when closing the browser? Pin
Rafferty Uy10-Oct-08 5:02
Rafferty Uy10-Oct-08 5:02 
GeneralRe: Can sessions still expire only when closing the browser? Pin
NeverHeardOfMe10-Oct-08 5:19
NeverHeardOfMe10-Oct-08 5:19 
GeneralRe: Can sessions still expire only when closing the browser? Pin
Rafferty Uy13-Oct-08 19:05
Rafferty Uy13-Oct-08 19:05 
QuestionHow can I send a Form with AJAX ? Pin
Mohammad Dayyan8-Oct-08 22:27
Mohammad Dayyan8-Oct-08 22:27 
AnswerRe: How can I send a Form with AJAX ? Pin
douss9-Oct-08 2:28
douss9-Oct-08 2:28 
Questioniframe question(control the scroll bar) Pin
Robert Wang19838-Oct-08 18:48
Robert Wang19838-Oct-08 18:48 
AnswerRe: iframe question(control the scroll bar) Pin
Jaffer Mumtaz8-Oct-08 19:13
Jaffer Mumtaz8-Oct-08 19:13 
GeneralRe: iframe question(control the scroll bar) Pin
Robert Wang19838-Oct-08 19:27
Robert Wang19838-Oct-08 19:27 
Hi, below is the script
function scrollFrame(x, y)
{
if (window.myFrame&&window.myFrame.scrollBy) {
alert("bbb");
var ifr = window.myFrame;
ifr.oldPageYOffset = ifr.pageYOffset;
ifr.scrollBy(x, y);
}
}
function test()
{
alert("aaa");
scrollFrame(50, 50);
}

I call it in the body.onclick()

the alert did popup, so means the the function is called but runtime error told me I can not access the property of oldPageYOffset neighter the function scrollBy(x,y) if the frame points url off site
AnswerRe: iframe question(control the scroll bar) Pin
Guffa9-Oct-08 9:32
Guffa9-Oct-08 9:32 
GeneralRe: iframe question(control the scroll bar) Pin
Robert Wang19839-Oct-08 19:45
Robert Wang19839-Oct-08 19:45 
GeneralRe: iframe question(control the scroll bar) Pin
Guffa10-Oct-08 0:58
Guffa10-Oct-08 0:58 
QuestionA font issue in CSS ! Pin
Mohammad Dayyan8-Oct-08 17:09
Mohammad Dayyan8-Oct-08 17:09 
AnswerRe: A font issue in CSS ! Pin
Jaffer Mumtaz8-Oct-08 19:10
Jaffer Mumtaz8-Oct-08 19:10 
GeneralRe: A font issue in CSS ! Pin
Mohammad Dayyan8-Oct-08 19:43
Mohammad Dayyan8-Oct-08 19:43 
AnswerRe: A font issue in CSS ! Pin
Perspx9-Oct-08 6:03
Perspx9-Oct-08 6:03 
QuestionWhat's the meaning of it in CSS ? Pin
Mohammad Dayyan8-Oct-08 16:26
Mohammad Dayyan8-Oct-08 16:26 
AnswerRe: What's the meaning of it in CSS ? Pin
Shog98-Oct-08 18:01
sitebuilderShog98-Oct-08 18:01 
GeneralRe: What's the meaning of it in CSS ? Pin
Mohammad Dayyan8-Oct-08 18:15
Mohammad Dayyan8-Oct-08 18:15 
GeneralRe: What's the meaning of it in CSS ? Pin
Shog98-Oct-08 21:14
sitebuilderShog98-Oct-08 21:14 
GeneralRe: What's the meaning of it in CSS ? Pin
Mohammad Dayyan8-Oct-08 21:49
Mohammad Dayyan8-Oct-08 21:49 
QuestionBasic Javascript Questions Pin
brimbis8-Oct-08 6:23
brimbis8-Oct-08 6:23 
AnswerRe: Basic Javascript Questions Pin
Perspx8-Oct-08 7:21
Perspx8-Oct-08 7:21 
GeneralRe: Basic Javascript Questions Pin
brimbis8-Oct-08 7:53
brimbis8-Oct-08 7:53 
AnswerRe: Basic Javascript Questions Pin
Perspx8-Oct-08 8:17
Perspx8-Oct-08 8:17 
GeneralRe: Basic Javascript Questions Pin
brimbis8-Oct-08 8:39
brimbis8-Oct-08 8:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.