Click here to Skip to main content
15,915,093 members
Home / Discussions / Web Development
   

Web Development

 
QuestionCrystal Report in Web Form Pin
Hemant Thaker19-Aug-08 0:57
Hemant Thaker19-Aug-08 0:57 
Questioncopy file from one server to another Pin
Member 410217119-Aug-08 0:51
Member 410217119-Aug-08 0:51 
AnswerRe: copy file from one server to another Pin
dgreat121-Aug-08 4:52
dgreat121-Aug-08 4:52 
QuestionDays in a Month in Javascript Pin
.NET- India 19-Aug-08 0:50
.NET- India 19-Aug-08 0:50 
GeneralRe: Days in a Month in Javascript Pin
Perspx19-Aug-08 0:55
Perspx19-Aug-08 0:55 
AnswerRe: Days in a Month in Javascript Pin
Guffa19-Aug-08 11:53
Guffa19-Aug-08 11:53 
Questionhtml file control on Mac Firefox Pin
Saetan18-Aug-08 22:03
Saetan18-Aug-08 22:03 
AnswerRe: html file control on Mac Firefox Pin
Johnny ²18-Aug-08 22:58
Johnny ²18-Aug-08 22:58 
QuestionWhat are the different ways of sending a form to an email Pin
Christopher Clarke18-Aug-08 11:52
Christopher Clarke18-Aug-08 11:52 
AnswerRe: What are the different ways of sending a form to an email Pin
Perspx18-Aug-08 12:02
Perspx18-Aug-08 12:02 
AnswerRe: What are the different ways of sending a form to an email Pin
Manas Bhardwaj18-Aug-08 12:15
professionalManas Bhardwaj18-Aug-08 12:15 
AnswerRe: What are the different ways of sending a form to an email Pin
User 171649218-Aug-08 12:25
professionalUser 171649218-Aug-08 12:25 
GeneralRe: What are the different ways of sending a form to an email Pin
Christopher Clarke18-Aug-08 12:34
Christopher Clarke18-Aug-08 12:34 
QuestionFirefox Dropdown Menu Problem Pin
dragon1011318-Aug-08 6:19
dragon1011318-Aug-08 6:19 
AnswerRe: Firefox Dropdown Menu Problem Pin
Shog918-Aug-08 6:43
sitebuilderShog918-Aug-08 6:43 
GeneralRe: Firefox Dropdown Menu Problem Pin
Perspx18-Aug-08 7:15
Perspx18-Aug-08 7:15 
GeneralRe: Firefox Dropdown Menu Problem Pin
dragon1011318-Aug-08 9:41
dragon1011318-Aug-08 9:41 
GeneralRe: Firefox Dropdown Menu Problem Pin
Shog918-Aug-08 9:53
sitebuilderShog918-Aug-08 9:53 
QuestionHTTPWebRequest Pin
Aleemulhaq17-Aug-08 22:59
Aleemulhaq17-Aug-08 22:59 
GeneralRe: HTTPWebRequest Pin
Perspx18-Aug-08 3:58
Perspx18-Aug-08 3:58 
Questionajaxcontrolltoolkit is not working Pin
DeepakRohilla1317-Aug-08 11:45
professionalDeepakRohilla1317-Aug-08 11:45 
AnswerRe: ajaxcontrolltoolkit is not working PinPopular
NeverHeardOfMe17-Aug-08 12:59
NeverHeardOfMe17-Aug-08 12:59 
AnswerThe universal two-step solution Pin
Shog917-Aug-08 15:55
sitebuilderShog917-Aug-08 15:55 
Questionhelp with img rollovers [modified] Pin
jumbojs17-Aug-08 9:19
jumbojs17-Aug-08 9:19 
Ok, I am trying to do this in javascript. Let me try to tell you what I want to do. I have a nav with 5 buttons(images). I want to be able to hover over a nav button, say nav1, have that change to newNav1 (a color version of the same image) while having another image underneath, img3(which right now is plain), change to img4(becomes a heading), then when you click on img4, you get img5(a description). Then when you move your mouse away from img5, you go back to the beginning. The code that I have included works except it doesn't go back to the beginning when you move your mouse away from img5. It will go back as long as you only hover over one button but if you hover over say nav1 and then move over to nav2, instead of getting the orginal image, you'll get the images that resulted from hovering over nav1.

thanks

//img is the first original red img and rolloverURL is the first color image that
//I want to change to
//over heading is the image I want the underneath img to change to first
//and overContent is the img I want the underneath img to change to last.
function addRollover(img, rolloverURL, overHeading, overContent) 
{
        var id = img;
        var contentBase = document.content.src;
        
 
        img = document.images[id];
        
        var baseUrl = img.src;
        
        (new Image()).src = rolloverURL;
        (new Image()).src = overHeading;
        (new Image()).src = overContent;
        
img.src = rolloverURL;
document.content.src = overHeading;
document.content.onclick = function () { document.content.src = overContent;}
img.onmouseout = function() { img.src = baseUrl; }
document.content.onmouseout = function () { document.content.src = contentBase;}
}


modified on Sunday, August 17, 2008 7:17 PM

QuestionSample ASP.Net Application Pin
farrukhj16-Aug-08 22:28
farrukhj16-Aug-08 22:28 

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.