Click here to Skip to main content
15,887,596 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Show a graphic like Polygon at a panel in a web application (C#) Pin
Frank Köppel29-Apr-09 1:01
Frank Köppel29-Apr-09 1:01 
QuestionPrinting a word document - file menu --> print -- should display our interface Pin
Hemant Thaker27-Apr-09 5:01
Hemant Thaker27-Apr-09 5:01 
QuestionPicking right tools for project Pin
Vorlonagent26-Apr-09 15:59
Vorlonagent26-Apr-09 15:59 
AnswerRe: Picking right tools for project Pin
Marc Firth26-Apr-09 21:58
Marc Firth26-Apr-09 21:58 
GeneralRe: Picking right tools for project Pin
Vorlonagent27-Apr-09 17:03
Vorlonagent27-Apr-09 17:03 
GeneralRe: Picking right tools for project Pin
Marc Firth27-Apr-09 22:03
Marc Firth27-Apr-09 22:03 
QuestionRandom image link display, if hover should stop the image link... Pin
Member 323010726-Apr-09 15:24
Member 323010726-Apr-09 15:24 
AnswerRe: Random image link display, if hover should stop the image link... Pin
Marc Firth26-Apr-09 22:04
Marc Firth26-Apr-09 22:04 
you could use onmouseover and onmouseout to assign a value to a variable ie.

<img onmouseover="stopplaying()" onmouseout="startplaying()" />

<script>
var isstopped=0;

function stopplaying(){
isstopped=1;
}

function startplaying(){
isstopped=0;
}

//then change your current javascipt:

function rotateImage(rImage, link) {

var new_image = getNextImage();

if(isstopped == 1){
document.getElementById('rImage').src = new_image.image_item.src;
document.getElementById('rLink').href = new_image.image_item.link;

setTimeout("rotateImage()", interval);
}

.....
}
</script>



GeneralPhoto Film Frame Around Table Cells Pin
Brady Kelly26-Apr-09 1:18
Brady Kelly26-Apr-09 1:18 
GeneralRe: Photo Film Frame Around Table Cells Pin
Marc Firth27-Apr-09 22:20
Marc Firth27-Apr-09 22:20 
QuestionJavaScript onkeypress Log to File Pin
Nikyoro25-Apr-09 8:33
Nikyoro25-Apr-09 8:33 
AnswerRe: JavaScript onkeypress Log to File Pin
Yusuf25-Apr-09 9:40
Yusuf25-Apr-09 9:40 
AnswerRe: JavaScript onkeypress Log to File Pin
Aman Bhullar27-Apr-09 23:32
Aman Bhullar27-Apr-09 23:32 
AnswerRe: JavaScript onkeypress Log to File Pin
saanj28-Apr-09 21:34
saanj28-Apr-09 21:34 
Questionalt property in img tag Pin
Brendan Vogt25-Apr-09 4:46
Brendan Vogt25-Apr-09 4:46 
AnswerRe: alt property in img tag Pin
Yusuf25-Apr-09 9:43
Yusuf25-Apr-09 9:43 
AnswerRe: alt property in img tag Pin
Brendan Vogt25-Apr-09 22:58
Brendan Vogt25-Apr-09 22:58 
AnswerRe: alt property in img tag Pin
Marc Firth26-Apr-09 22:30
Marc Firth26-Apr-09 22:30 
QuestionUsing Paypal Pin
Mohammad A Gdeisat25-Apr-09 4:30
Mohammad A Gdeisat25-Apr-09 4:30 
AnswerRe: Using Paypal Pin
Yusuf25-Apr-09 9:44
Yusuf25-Apr-09 9:44 
AnswerRe: Using Paypal Pin
SayreCC26-Apr-09 18:00
SayreCC26-Apr-09 18:00 
AnswerRe: Using Paypal Pin
Marc Firth26-Apr-09 22:26
Marc Firth26-Apr-09 22:26 
QuestionHtml-iFrame-Javascript Pin
LordLothar25-Apr-09 4:06
LordLothar25-Apr-09 4:06 
AnswerRe: Html-iFrame-Javascript Pin
Yusuf25-Apr-09 9:47
Yusuf25-Apr-09 9:47 
GeneralRe: Html-iFrame-Javascript Pin
LordLothar25-Apr-09 22:23
LordLothar25-Apr-09 22:23 

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.