Click here to Skip to main content
15,906,463 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Regarding MSHTML Pin
Alan Burkhart4-Jan-11 5:48
Alan Burkhart4-Jan-11 5:48 
GeneralRe: Regarding MSHTML Pin
cjoki4-Jan-11 12:29
cjoki4-Jan-11 12:29 
GeneralRe: Regarding MSHTML Pin
Alan Burkhart4-Jan-11 12:40
Alan Burkhart4-Jan-11 12:40 
QuestionGetting started with web development Pin
jgrogan28-Dec-10 22:27
jgrogan28-Dec-10 22:27 
AnswerRe: Getting started with web development Pin
TweakBird28-Dec-10 23:08
TweakBird28-Dec-10 23:08 
GeneralRe: Getting started with web development Pin
jgrogan28-Dec-10 23:18
jgrogan28-Dec-10 23:18 
AnswerRe: Getting started with web development Pin
Harii_M28-Dec-10 23:51
Harii_M28-Dec-10 23:51 
QuestionA good book to learn web services Pin
bleedingfingers27-Dec-10 22:06
bleedingfingers27-Dec-10 22:06 
AnswerRe: A good book to learn web services Pin
Richard MacCutchan27-Dec-10 22:39
mveRichard MacCutchan27-Dec-10 22:39 
GeneralRe: A good book to learn web services Pin
bleedingfingers27-Dec-10 23:19
bleedingfingers27-Dec-10 23:19 
QuestionHello Pin
willie1227-Dec-10 5:02
willie1227-Dec-10 5:02 
AnswerRe: Hello Pin
Richard MacCutchan27-Dec-10 7:30
mveRichard MacCutchan27-Dec-10 7:30 
AnswerRe: Hello Pin
PompeyBoy331-Dec-10 0:12
PompeyBoy331-Dec-10 0:12 
QuestionHow do I Close print dialog opened by JScript by JScript itself? Pin
krishnaraj4026-Dec-10 20:56
krishnaraj4026-Dec-10 20:56 
AnswerRe: How do I Close print dialog opened by JScript by JScript itself? Pin
Yusuf5-Jan-11 10:18
Yusuf5-Jan-11 10:18 
AnswerRe: How do I Close print dialog opened by JScript by JScript itself? Pin
shamly6-Jan-11 19:14
shamly6-Jan-11 19:14 
QuestionUnable to conrol space between nav bar and images Pin
raydona25-Dec-10 7:26
raydona25-Dec-10 7:26 
AnswerRe: Unable to conrol space between nav bar and images Pin
JOAT-MON27-Dec-10 19:13
JOAT-MON27-Dec-10 19:13 
QuestionHow does the "src" tag in javascript work? Pin
Tal Rasha's Guardianship17-Dec-10 18:20
Tal Rasha's Guardianship17-Dec-10 18:20 
In JScript1.js, I defined a function like this:
=================================================
var count = 0;

function changeDefaultStatus() {
var arr = new Array("haoyong", "hao123", "12wangzhi", "123", "state");
if (count >= 5)
count = 0;
top.defaultStatus = arr[count];
count++;
}
=================================================

And use the function like this:
=================================================




//the code below does not work
<script>
setInterval("changeDefaultStatus();", 2000);



.......


//But if I move the code to here, it works

setInterval("changeDefaultStatus();", 2000);




====================================================

when a page is being loaded, how does the "src" works? the explorer will wait for "JScript1.js"'s loading, or just load it in the background.
Thank you
AnswerRe: How does the "src" tag in javascript work? Pin
Graham Breach18-Dec-10 4:24
Graham Breach18-Dec-10 4:24 
QuestionThe Javascript variable under HTML reference questions:) [modified] Pin
hack00412-Dec-10 10:57
hack00412-Dec-10 10:57 
AnswerRe: The Javascript variable under HTML reference questions:) Pin
Jules VDV14-Dec-10 4:28
Jules VDV14-Dec-10 4:28 
GeneralRe: The Javascript variable under HTML reference questions:) Pin
hack00414-Dec-10 20:38
hack00414-Dec-10 20:38 
Questionhow to add item and notify item double-click of jquery sortable? Pin
Jun Jin Pyo7-Dec-10 22:44
Jun Jin Pyo7-Dec-10 22:44 
AnswerRe: how to add item and notify item double-click of jquery sortable? Pin
Jules VDV14-Dec-10 4:39
Jules VDV14-Dec-10 4: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.