Advertisement
| 05.06.2008 at 08:43PM PDT, ID: 23381573 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: |
<html>
<head>
<script language="javascript">
function setAd() {
//ultimatedly 'ORD' and 'unitN' vars will be passed in through flash object
//bannerAd = "http://ad.doubleclick.net/adj/o.soulseries"+ unitN +";tile=2;sz=468x60;ord=" + ord + "?";
//for testing purposes
var bannerAd ="http://ad.doubleclick.net/adj/o.soulseries1;tile=2;sz=468x60;ord=80127?"
/*the bannerAd return javascript code which need to be placed in div
document.write('<a target="_blank" href="http://ad.doubleclick.net/click;h=v8/36b9/0/0/%2a/s;202202255;0-0;0;26622013;1-468/60;26345727/26363581/2;;~sscs=%3fhttp://www.snitch.com/"><img src="http://m1.2mdn.net/viewad/1656857/client1_468x60.jpg" border=0 alt="Click here to find out more!"></a>');
*/
//this line writes the banner to the page wiping the div off the page
//document.write("<scr"+"ipt language = 'JavaScript' type='text/javascript' src="+bannerAd+"></scr"+"ipt>");
}
</script>
</head>
<body>
<a href="javascript:setAd()">Place ad dynamically</a>
<div id="ad_banner" style="background-color:black;width:600px; height:60px; position:absolute; left:0px; top:100px"></div>
</body>
</html>
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.06.2008 at 08:46PM PDT, ID: 21513066 |
| 05.06.2008 at 08:51PM PDT, ID: 21513084 |
| 05.06.2008 at 09:15PM PDT, ID: 21513136 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript"><!--
function updateContent()
{
document.write("Howdy");
}
//--></script>
</head>
<body>
<h1>Hello</h1>
<div onclick="updateContent()">Click Me</div>
</body>
</html>
|
| 05.07.2008 at 05:29AM PDT, ID: 21515634 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: |
<html>
<head>
<script>
/* Replace write by custom method
(c) 2002-2008 Michel Plungjan - javascripts(a)plungjan.name */
var oldWrite = document.write;
var adContent = "";
document.write = function(str) { adContent+=str }
</script>
<script src="http://ad.doubleclick.net/adj/o.soulseries1;tile=2;sz=468x60;ord=80127"></script>
<script>
window.onload=function() { document.getElementById('divId').innerHTML=adContent; }
</script>
</head>
<body>
Text before ad <hr>
<div id="divId"></div>
Text after ad <hr>
</body>
</html>
|
| 05.07.2008 at 08:01AM PDT, ID: 21517141 |
| 05.07.2008 at 11:44AM PDT, ID: 21519224 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: |
<script>
/* Replace write by custom method
(c) 2002-2008 Michel Plungjan - javascripts(a)plungjan.name */
var oldWrite = document.write;
var adContent = "";
document.write = function(str) { adContent+=str; };
var ORD = "80127";
var adSRC = "http://ad.doubleclick.net/adj/o.soulseries1;tile=2;sz=468x60;ord="+ORD+"?";
oldWrite('<scr'+'ipt src="'+adSRC+'"><'+'/script>');
</script>
<script>
window.onload=function() { document.getElementById('divId').innerHTML=adContent; }
</script>
</head>
<body>
Text before ad <hr>
<div id="divId"></div>
Text after ad <hr>
</body>
</html>
|
| 05.07.2008 at 12:22PM PDT, ID: 21519537 |
| 05.07.2008 at 01:09PM PDT, ID: 21519930 |
| 05.07.2008 at 01:35PM PDT, ID: 21520151 |
| 05.07.2008 at 03:35PM PDT, ID: 21520949 |