|
|
|
|
Inspect me...
|
|
Inspect me...
@font-face {
font-family: "My Font";
src: url('myFont.woff') format("woff");
}
#myLabel {
font-family: "My Font";
}
|
|
|
Introduced in Firebug 1.10
|
|
|
count == 1
|
|
Move mouse over this area
monitorEvents($("#testElement")[0], "mousemove")
unmonitorEvents($("#testElement")[0], "mousemove")
Note: $ method comes from jQuery on these slides
|
|
{
"log": {
"version": "1.1",
"creator": {
"name": "Firebug",
"version": "1.10"
},
"pages": [ ... ],
"entries": [ ... ]
}
|
|
|
|
|
Console API: $0, $1, $n(index)
|
|
var s=document.createElement('script');
s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
document.getElementsByTagName('body')[0].appendChild(s);
|
jQuery.data(key, value)
|
$('body').data('Firebug', 'makes it possible')
.data('jQuery', "is pretty damn cool!")
.data('FireQuery', 'is just a cherry');
|