html:
$("p").fontcolor().html("qaq")
jQuery:
$.fn.extend({
fontcolor:function(){
this.css("font-size","30px").css("color","blue")
return this
}
})
html:
$("p").fontcolor().html("qaq")
jQuery:
$.fn.extend({
fontcolor:function(){
this.css("font-size","30px").css("color","blue")
return this
}
})