JQuery Developer Question:
How you print some thing on console using jquery?
Answer:
var mydiv = $("#divid").html();
console.log(mydiv);
console.log(mydiv);
Previous Question | Next Question |
Why jQuery better than JavaScript? | How programmatically trigger a click event that's being handled by jQuery? |