Interview Questions
Most Essential And Frequently Asked Interview
Questions And Answer
HTML
Q.What is HTML?
Ans.:HTML | What is HTML
HTML is a web language that stands for HyperText Markup Language. It was created by Berners-Lee in late 1991. HTML is the standard markup language for creating web pages that are displayed by a web browser. Html page made up of HTML tags and tag contains. Browsers do not display the HTML tags but use them to render the content of the page.
View DetialsQ.Remove id attribute from an element using jquery
Ans.:Jquery | Remove id attribute from an element
The removeAttr() function from jquery is used to removes one or more attributes from the selected elements.
$("div").removeAttr("id");
View Detials