Skip to main content

Effects in jQuery Frontend Development Course - S4 V11 #jquery #jqueryEf...





In this tutorial we will learn how to use jquery and how to read jquery API documentation. As a Bonus, I will also explain what is API that is application programming interface.



jQuery is a javascript based framework that simplifies the development tasks for a web developer. JavaScript and jQuery can be used side by side without causing conflicts. The two most widely used methods of jQuery are fadeIn and fadeOut. These methods are applied to a selector to take effect.



FadeIn method smoothly displays the selected element, whereas fadeOut method smoothly hides the selected element from the view. In order to understand these methods we have done two things. First, we have used these methods in our project; secondly, we have learned to read the API documentation of jQuery.



We do not read the entire API Documentation; instead, we only read specific parts and areas. For example, we read the definition or description of the method; then read the parameters; then see the examples; use them and try to understand their descriptions.

Comments

Popular posts from this blog

Bootstrap Container and Container fluid Easy Frontend Development Course

In this tutorial, we will learn how to use the bootstrap container and container-fluid classes to make website responsive. Company www.webdevelopmentlabs.com Give your feedback here: www.webdevelopmentlabs.com/flow/survey

Is Front-end Development Worth Learning?

In the modern technological era the skill is not to re-invent the wheel but to amalgamate different things together to form new things. The person who knows how to join things together in the web designing field is the most wanted web developer. Why? The answer is urgency and speed. Organizations spend millions in development not to wait for months for a website or application, and that too with lots of development, deployment and maintenance issues. The ace of web designing industry is the one who can pick different components and join them together. However, to do so you need to understand at least the basics of front-end development industry; just in case, things go wrong you should be able to fix it. Or on a larger scale, most of the times plugging components together isn't the end of front-end development, clients require you to customize their application or website according to their business needs, here you will be looking for some professional web designer who would be doi...

Adding CSS to HTML (URDU / HINDI) Tutorial

There are three ways to incorporate, embed or attach CSS with HTML web page: 1 - Inline CSS 2 - Internal CSS 3 - External CSS All of the above methods have their own specific syntax and implementation.  Inline CSS Inline CSS is added as an attribute to any HTML element . The name of the attribute is style. It is added like this: <div style=" " ></div> In the inverted commas, you have to enter the property-value pairs, like this: <div style=" color: red " ></div> Internal CSS Internal CSS is added as an  HTML element  under the HEAD tag of HTML web page. The name of the element is <style> . It is added like this: <html> <head> <style> h1 {color: red;} </style> </head> External CSS External CSS is added as an  HTML element   under the HEAD tag of HTML web page. The name of the element is <link> . It is added like this: ...