Click here to Skip to main content
15,890,123 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: How to receiveEmail from google in asp.net Pin
Ashfield16-Sep-08 21:56
Ashfield16-Sep-08 21:56 
Questionhow to integrate our own login page in google apps? Pin
srinivassam16-Sep-08 2:04
srinivassam16-Sep-08 2:04 
Questiononmouseover in IE Pin
William Engberts15-Sep-08 5:19
William Engberts15-Sep-08 5:19 
AnswerRe: onmouseover in IE Pin
Shog915-Sep-08 5:35
sitebuilderShog915-Sep-08 5:35 
GeneralRe: onmouseover in IE Pin
William Engberts15-Sep-08 6:06
William Engberts15-Sep-08 6:06 
GeneralRe: onmouseover in IE Pin
Shog915-Sep-08 6:24
sitebuilderShog915-Sep-08 6:24 
AnswerRe: onmouseover in IE Pin
Perspx15-Sep-08 6:19
Perspx15-Sep-08 6:19 
AnswerRe: onmouseover in IE Pin
NeverHeardOfMe15-Sep-08 6:45
NeverHeardOfMe15-Sep-08 6:45 
IE7 cannot set event handlers via the setAttribute method. Try somethign along these lines - should work in both IE and FF:


<html>
<head>
<title></title>
<script langauge="javascript">
function ol() {
var n = "1";
var a = document.createElement('a');
var d = document.getElementById("divA");
a.setAttribute('href',"#");
a.innerHTML = 'oi jimmy';
a.onmouseover = new Function('mopen(\'m' + n + '\')');
a.onmouseout = new Function('mclosetime()')
d.appendChild(a);
}

function mopen(x) {
alert('hi '+x);
}
function mclosetime() {
alert('bye');
}

</script>


</head>
<body onload="ol()">

<div id="divA"></div>

</body>
</html>
GeneralRe: onmouseover in IE Pin
William Engberts15-Sep-08 21:25
William Engberts15-Sep-08 21:25 
QuestionHow to understand Debug Diagnostic's generated Report Pin
shecool14-Sep-08 20:38
shecool14-Sep-08 20:38 
Questionweb technology for windows/linux Pin
Amit Agarrwal14-Sep-08 18:44
Amit Agarrwal14-Sep-08 18:44 
AnswerRe: web technology for windows/linux Pin
shecool14-Sep-08 20:42
shecool14-Sep-08 20:42 
GeneralRe: web technology for windows/linux Pin
Amit Agarrwal14-Sep-08 21:32
Amit Agarrwal14-Sep-08 21:32 
GeneralRe: web technology for windows/linux Pin
Ashfield14-Sep-08 23:21
Ashfield14-Sep-08 23:21 
GeneralRe: web technology for windows/linux Pin
Amit Agarrwal14-Sep-08 23:48
Amit Agarrwal14-Sep-08 23:48 
GeneralRe: web technology for windows/linux Pin
Ashfield15-Sep-08 0:06
Ashfield15-Sep-08 0:06 
GeneralRe: web technology for windows/linux Pin
Paul Conrad15-Sep-08 10:02
professionalPaul Conrad15-Sep-08 10:02 
GeneralRe: web technology for windows/linux Pin
Paul Conrad15-Sep-08 10:01
professionalPaul Conrad15-Sep-08 10:01 
AnswerRe: web technology for windows/linux Pin
Perspx15-Sep-08 10:19
Perspx15-Sep-08 10:19 
AnswerRe: web technology for windows/linux Pin
alex.barylski15-Sep-08 15:17
alex.barylski15-Sep-08 15:17 
AnswerRe: web technology for windows/linux Pin
Member 476664618-Sep-08 1:18
Member 476664618-Sep-08 1:18 
QuestionWAN connection for Server and CLient Pin
balu1234512-Sep-08 4:08
balu1234512-Sep-08 4:08 
AnswerIgnore Repost Pin
Manas Bhardwaj12-Sep-08 4:10
professionalManas Bhardwaj12-Sep-08 4:10 
Questionhow to customize the login page url? Pin
srinivassam11-Sep-08 22:41
srinivassam11-Sep-08 22:41 
AnswerRe: how to customize the login page url? Pin
saidwin14-Sep-08 23:28
saidwin14-Sep-08 23: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.