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

Web Development

 
AnswerRe: How to avoid CAPTCHA ? Pin
Christian Graus2-Oct-08 11:52
protectorChristian Graus2-Oct-08 11:52 
GeneralRe: How to avoid CAPTCHA ? Pin
NeverHeardOfMe2-Oct-08 12:06
NeverHeardOfMe2-Oct-08 12:06 
GeneralRe: How to avoid CAPTCHA ? Pin
Mark Churchill3-Oct-08 5:19
Mark Churchill3-Oct-08 5:19 
AnswerRe: How to avoid CAPTCHA ? Pin
Perspx2-Oct-08 20:14
Perspx2-Oct-08 20:14 
AnswerRe: How to avoid CAPTCHA ? Pin
Paul Conrad3-Oct-08 6:42
professionalPaul Conrad3-Oct-08 6:42 
AnswerRe: How to avoid CAPTCHA ? Pin
Jaffer Mumtaz4-Oct-08 20:49
Jaffer Mumtaz4-Oct-08 20:49 
QuestionIE7 - drawing lines around an image tag Pin
Christian Graus2-Oct-08 10:42
protectorChristian Graus2-Oct-08 10:42 
AnswerRe: IE7 - drawing lines around an image tag Pin
Mohammad Dayyan2-Oct-08 11:24
Mohammad Dayyan2-Oct-08 11:24 
GeneralRe: IE7 - drawing lines around an image tag Pin
Christian Graus2-Oct-08 11:52
protectorChristian Graus2-Oct-08 11:52 
GeneralRe: IE7 - drawing lines around an image tag Pin
Mohammad Dayyan2-Oct-08 12:14
Mohammad Dayyan2-Oct-08 12:14 
AnswerRe: IE7 - drawing lines around an image tag Pin
NeverHeardOfMe2-Oct-08 11:26
NeverHeardOfMe2-Oct-08 11:26 
GeneralPS Pin
NeverHeardOfMe2-Oct-08 11:39
NeverHeardOfMe2-Oct-08 11:39 
GeneralRe: PS Pin
Christian Graus2-Oct-08 11:55
protectorChristian Graus2-Oct-08 11:55 
GeneralRe: IE7 - drawing lines around an image tag Pin
Christian Graus2-Oct-08 11:54
protectorChristian Graus2-Oct-08 11:54 
GeneralRe: IE7 - drawing lines around an image tag Pin
NeverHeardOfMe2-Oct-08 12:02
NeverHeardOfMe2-Oct-08 12:02 
GeneralAnd a PS again! Pin
NeverHeardOfMe2-Oct-08 12:17
NeverHeardOfMe2-Oct-08 12:17 
AnswerRe: IE7 - drawing lines around an image tag Pin
Guffa4-Oct-08 1:39
Guffa4-Oct-08 1:39 
Christian Graus wrote:
element.style.border = "5 solid rgb(0,0,0)";


You have forgotten the unit on the border width. Although it works in IE with this faulty setting, any other browser will ignore it.

element.style.border = "5x solid rgb(0,0,0)";

Christian Graus wrote:
element.style.cursor = "pointer";
element.style.cursor = "hand";


Setting the same property twice doesn't make it any better. The standard value is 'pointer', and that's what you should use. The non-standard 'hand' value is only recognised by Internet Explorer.

Christian Graus wrote:
This code, specifically, any change to element.style.border, causes the whole page to disappear.


That suggests that there is something wrong with the html code. Have you verified the code?

Despite everything, the person most likely to be fooling you next is yourself.

QuestionHow to handle HTML comment chars ( i.e. "<!--" ) in TEXTBOX Pin
Arindam Tewary2-Oct-08 0:15
professionalArindam Tewary2-Oct-08 0:15 
AnswerRe: How to handle HTML comment chars ( i.e. "<!--" ) in TEXTBOX Pin
Johnny ²2-Oct-08 1:11
Johnny ²2-Oct-08 1:11 
QuestionDisplay redirecting page. Pin
mydogisblue1-Oct-08 21:46
mydogisblue1-Oct-08 21:46 
AnswerRe: Display redirecting page. Pin
Johnny ²2-Oct-08 1:13
Johnny ²2-Oct-08 1:13 
GeneralRe: Display redirecting page. Pin
mydogisblue2-Oct-08 4:10
mydogisblue2-Oct-08 4:10 
QuestionHow can we prevent Search Engines Caching or indexing ? Pin
Mohammad Dayyan1-Oct-08 15:59
Mohammad Dayyan1-Oct-08 15:59 
AnswerRe: How can we prevent Search Engines Caching or indexing ? Pin
Christian Graus1-Oct-08 16:06
protectorChristian Graus1-Oct-08 16:06 
GeneralRe: How can we prevent Search Engines Caching or indexing ? Pin
Mohammad Dayyan1-Oct-08 16:12
Mohammad Dayyan1-Oct-08 16:12 

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.