Click here to Skip to main content
15,891,692 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Javascript and database Pin
Torsten Mauz30-Nov-06 2:26
Torsten Mauz30-Nov-06 2:26 
GeneralRe: Javascript and database Pin
Dominic Pettifer30-Nov-06 11:42
Dominic Pettifer30-Nov-06 11:42 
QuestionWYSIWYG HTML Editor Pin
sam31529-Nov-06 10:09
sam31529-Nov-06 10:09 
AnswerRe: WYSIWYG HTML Editor Pin
Infomine Liam29-Nov-06 13:00
Infomine Liam29-Nov-06 13:00 
QuestionJavascript file existing checking [modified] Pin
Clickok29-Nov-06 6:47
Clickok29-Nov-06 6:47 
AnswerRe: Javascript file existing checking Pin
Torsten Mauz29-Nov-06 10:12
Torsten Mauz29-Nov-06 10:12 
GeneralRe: Javascript file existing checking Pin
Clickok29-Nov-06 11:34
Clickok29-Nov-06 11:34 
GeneralRe: Javascript file existing checking Pin
Torsten Mauz29-Nov-06 11:46
Torsten Mauz29-Nov-06 11:46 
Ok when you said "I wish test if some client side file exists" I understood that as that you were checking the client....anyway...

this will be a hell of a lot simpler Wink | ;)
<img src="/images/MyImage.jpg" id="myImg" />

Then in a script block below have this:
var imgEle = document.getElementById('myImg');
imgEle.onerror = imgError;
 
function imgError()
{
    imgEle.style.display = 'none';
}


Note: CP seems to be replacing some of the code...you should replace ".removed" with ".onerror" in the 2nd line of javascript.

HTH
GeneralRe: Javascript file existing checking Pin
Clickok29-Nov-06 11:54
Clickok29-Nov-06 11:54 
GeneralRe: Javascript file existing checking Pin
Torsten Mauz30-Nov-06 1:35
Torsten Mauz30-Nov-06 1:35 
QuestionWORD SEARCHING AND LISTING CODE ON HTML PAGES [modified] Pin
MARSHAX29-Nov-06 1:18
MARSHAX29-Nov-06 1:18 
GeneralASP.NET Caching Problem Pin
Brady Kelly29-Nov-06 0:27
Brady Kelly29-Nov-06 0:27 
GeneralRe: ASP.NET Caching Problem Pin
Torsten Mauz29-Nov-06 11:59
Torsten Mauz29-Nov-06 11:59 
QuestionHow to use CDONTS in UNIX Server using ASP Pin
Debi Prasad28-Nov-06 23:42
Debi Prasad28-Nov-06 23:42 
AnswerRe: How to use CDONTS in UNIX Server using ASP Pin
Bradml29-Nov-06 0:09
Bradml29-Nov-06 0:09 
GeneralRe: How to use CDONTS in UNIX Server using ASP Pin
Brady Kelly29-Nov-06 0:28
Brady Kelly29-Nov-06 0:28 
QuestionAbout the CodeProject page "script/comments/user_reply.asp" Pin
Davids_Maguire28-Nov-06 22:07
Davids_Maguire28-Nov-06 22:07 
AnswerRe: About the CodeProject page "script/comments/user_reply.asp" Pin
Guffa29-Nov-06 0:16
Guffa29-Nov-06 0:16 
GeneralRe: About the CodeProject page "script/comments/user_reply.asp" Pin
Davids_Maguire29-Nov-06 1:22
Davids_Maguire29-Nov-06 1:22 
AnswerRe: About the CodeProject page "script/comments/user_reply.asp" Pin
Guffa29-Nov-06 13:21
Guffa29-Nov-06 13:21 
Questionproblem with frame levels Pin
Wim Engberts28-Nov-06 22:00
Wim Engberts28-Nov-06 22:00 
AnswerRe: problem with frame levels Pin
Bradml28-Nov-06 22:44
Bradml28-Nov-06 22:44 
GeneralRe: problem with frame levels Pin
Wim Engberts28-Nov-06 22:50
Wim Engberts28-Nov-06 22:50 
GeneralRe: problem with frame levels Pin
Bradml28-Nov-06 22:56
Bradml28-Nov-06 22:56 
GeneralRe: problem with frame levels Pin
Wim Engberts28-Nov-06 23:10
Wim Engberts28-Nov-06 23:10 

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.