jquery/build/docs/js/doc.js

30 lines
948 B
JavaScript
Raw Normal View History

2006-08-09 07:44:05 +02:00
var types = {
jQuery: "A jQuery object.",
Object: "A simple Javascript object. For example, it could be a String or a Number.",
String: "A string of characters.",
Number: "A numeric valid.",
Element: "The Javascript object representation of a DOM Element.",
Hash: "A Javascript object that contains key/value pairs in the form of properties and values.",
"Array<Element>": "An Array of DOM Elements.",
"Array<String>": "An Array of strings.",
Function: "A reference to a Javascript function."
};
2006-08-13 05:05:31 +02:00
$(document).ready(function(){
$("span.tooltip").each(function(){
if ( types[ this.innerHTML ] )
this.title = types[ this.innerHTML ];
}).ToolTipDemo('#fff');
2006-08-13 20:36:50 +02:00
2006-08-13 05:05:31 +02:00
$("a.name").click(function(){
$("div.more,div.short",this.parentNode.parentNode)
.find("div.desc",function(){
$(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
})
.toggle('slow');
2006-08-13 05:05:31 +02:00
return false;
2006-08-09 07:44:05 +02:00
});
2006-08-13 05:05:31 +02:00
$("#docs").alphaPager( 1 );
});