Skip to content

Latest commit

 

History

History
105 lines (83 loc) · 1.38 KB

docs.md

File metadata and controls

105 lines (83 loc) · 1.38 KB

nanoJS Docs

addClass

$("#a").addClass("newclass");

animate

$('#c').animate('2.3', '1.2','0','1','1', '0', '0', '0', '0', '1');

attr

$('#c').attr("class", "newclass");

css

$(".someClass").css("background-color:green");

cssdom

$("div").cssdom({backgroundColor:"red", color:"#fff"});

empty

$('#c').empty();

eq

$("div").eq(0).html("Hello World!");

getAttr

$("#b").getAttr("class");

html

$('#c').html("<p>Hello World!</p>");

insertAfter, insertBefore, insertFirst insertLast

$('#c').insertAfter("<p>Hello World!</p>");

offset

$("#b").offset();
$("#c").css("width:" + offset.width + "px");

on

$("#a").on("click", function(){

  $("#someDiv").css("background-color:green; color:#fff;");

})

parent

$("p").parent().css("background-color:green");

removeAttr

$('#c').removeAttr("class");

removeClass

$('#c').removeClass("someClass");

siblings

$("#active").siblings().css("background-color:green");

$("li").eq(2).siblings().css("background-color:red");

text

$('#b').text("Hello World!");

toggleClass

$('#c').toggleClass("someClass");

$(this)

$("div").on("click", function(){

  $(this).css("background-color:red");

})