hi friends.
1. can any one explain why we need jquery?
2. what is responsive in html5?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mageshwaran RPosted Nov 12, 2019, 8:35 AM
Jaganathan BantheswaranPosted Nov 14, 2014, 6:57 AM
You can build a site even without using Jquery. Jquery has some functions makes you to ease your DOM jobs.
for example, to add a span to div you have to write in javscript,
var dateSpan = document.createElement('span')
var div = document.createElement('div');
div.appendChild(dateSpan);
But in jQuery, you can do simething like in a single line,
$('').append('').
And,
Responsiveness in HTML5 is that the sites should fit various devices. Responsive web design gives web creators to make layouts that respond/adjust to any screen size[desktop, mobile, tablet]
Joginder BangerPosted Nov 11, 2014, 3:17 AM
http://www.codeproject.com/Articles/157446/What-is-jQuery-and-How-to-Start-using-jQuery