Advertisement
Advertisement
| 05.10.2008 at 02:02PM PDT, ID: 23392049 |
|
[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! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.10.2008 at 02:41PM PDT, ID: 21540574 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
<!-- Dependencies -->
<script type="text/javascript" src="http://yui.yahooapis.com/2.5.1/build/yahoo/yahoo-min.js" ></script>
<script type="text/javascript" src="http://yui.yahooapis.com/2.5.1/build/get/get-min.js" ></script>
YAHOO.util.Get.script(
["http://mysite.com/syndication/adplace.php?pub=1210139151"], {
onSuccess: function(o) {
YAHOO.log(o.data); // foo
new YAHOO.util.DDProxy("dd1"); // also new o.reference("dd1"); would work
this.log("won't cause error because YAHOO is the scope");
this.log(o.nodes.length === 2) // true
// o.purge(); // optionally remove the script nodes immediately
},
onFailure: function(o) {
YAHOO.log("transaction failed");
},
data: "foo",
scope: YAHOO,
// win: otherframe // target another window/frame
autopurge: true // allow the utility to choose when to remove the nodes
});
|
| 05.10.2008 at 10:40PM PDT, ID: 21541561 |
| 05.11.2008 at 02:10AM PDT, ID: 21541911 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
window.onload = my_init;
// instead of this:
if (window.addEventListener) {
window.addEventListener("load", my_init, false);
} else if (window.attachEvent) {
window.attachEvent("onload", my_init);
}
// or
window.onload = function(){
document.getElementById("my_script").src = "http://mysite.com/syndication/adplace.php?pub=1210139151";
}
|
| 05.11.2008 at 10:42AM PDT, ID: 21543035 |
| 05.11.2008 at 11:04AM PDT, ID: 21543090 |
1: |
<script type="text/javascript" id="my_script" defer='defer'></script> |
| 05.11.2008 at 11:19AM PDT, ID: 21543113 |
| 05.11.2008 at 12:55PM PDT, ID: 21543299 |
| 05.16.2008 at 05:28AM PDT, ID: 21582057 |