How to Use add-remove CSS classes in jQuery?

So in this blog, we’re going to learn that Use add-remove CSS classes in jQuery?

So let’s go ahead and do that for first in index.html, with help of style.css & main.js and define-

Additional CSS classes can be added to an element via addClass() For instance, add the class .fancy-link to all anchor tags. Note that you *do not* add a dot in front of the class name here.

$(“a”).addClass(“fancy-link”);

You can also add multiple classes at once.

  $(“p:first”).addClass(“large emphasize”);

To attach a class based on the index of the element in your selected set of elements, you can use a callback function.

$(“li li”).addClass(function(index) {
// This adds classes .item-0, .item-1, … to the list’s sub-items.
$(this).addClass(“item-” + index);
});

You can even use two parameters for the callback function, the index and the current class of the element.

$(“div”).addClass(function(index, currentClasses) {
console.log(currentClasses); // String containing all classes

// Add .red-box if the current classes contain "dummy"
if (currentClasses.indexOf("dummy") !== -1) {
  return "red-box";
}

});

CSS classes in jQuery without js
 CSS classes in jQuery with js
Tagged : / / / / /

Is an AWS certification right for a beginner?

Whether you’re someone looking to take your career to the next level into a new domain, getting into cloud and acquire skills of cloud through getting the AWS certification can be a good option to start your life-changing career. But AWS have variety of different Certification to offer. But the question is where to start and which Certification is good for as a beginners.

In this blog i will try to give an appropriate answer about that question, importance of AWS Certification, Career scope and more. But first let’s take about AWS in brief.

What is AWS?

Amazon Web Services (AWS) is a secure cloud services platform, offering compute power, database storage, content delivery and other functionality to help businesses scale and grow. It is a subsidiary of Amazon providing on-demand cloud computing platforms.

AWS has significantly more services, and more features within those services, than any other cloud provider–from infrastructure technologies like compute, storage, and databases–to emerging technologies, such as machine learning and artificial intelligence, data lakes and analytics, and Internet of Things. AWS has the largest and most dynamic community, with millions of active customers and tens of thousands of partners globally.

Certification offer by AWS

Some advantages of having an AWS certification:

  • Credibility

Having a certification will not only increase your knowledge about the services but also increase your credibility. Acquiring credentials will open more doors of opportunities.

  • Help you get a job

If you’re a professional or a fresher the tag as “AWS Certified” will fetch you a lot of job opportunities in AWS-related projects.

  • Higher Pay

The AWS certification does not guarantee a higher pay but AWS is the highest paying certifications list in the US.

  • Improves skills

Having an AWS certification helps you to improve your skill set and reduce the risks when implementing an AWS project.

  • Helps you build the business

Employers look for AWS certified employees as they help in building a business. It is one of the criteria for higher tier memberships of AWS Partner Network.

  • Huge benefits

Being a member of the AWS Partner Network helps you get training subsidies, AWS usage credit, market support, etc.

Where to Start

If you aren’t sure where to start, Best institute are a great way to help you get the ball rolling in your cloud certification journey, they offering comprehensive AWS certification course led by the experts in the programme. They trained and prepare you for the AWS certification exam. You will also learn the best practices to be followed while working on AWS projects in the industry.

If you want to learn AWS from scratch to Advance then I would like to suggest you DevOpsSchool.com, one of the best institute for AWS Certification. This Certification is completely hands-on and designed in a way to help you become technical expertise of AWS. Both in online and offline mode in top cities like Bangalore, Hyderabad and Globally.

I hope you find this particular blog on AWS helpful, and I wish you good luck for your career ahead.

Thank You!!

Tagged : / / / / / / / / /

Is there a future in Ansible?

Is there a future in Ansible?

It is clear that, we live in the age of microservices, where automation is not a nice-to-have anymore. Cloud provisioning is an important element of the modern cloud computing model and it became an important to do list in every operation. There are so many different type of automation tools for job done. Those tools will help us in saving time and increasing the performance and accuracy of provisioning and configuration management processes that lead us to no human error process.

In this blog, we will discuss about one the most popular automation tool “Ansible” and also benefits of cloud automation with Ansible. Let’s first look at what is Ansible?

What is Ansible?

Ansible is an open-source automation tool, or you can also called platform, used for IT tasks such as configuration management, application deployment, intraservice orchestration, and provisioning. Automation is crucial these days, with IT environments that are too complex and often need to scale too quickly for system administrators and developers to keep up if they had to do everything manually.

In simple words, it frees up time and increases efficiency. And also it is rapidly rising to the top in the world of automation tools.

Ansible provides the following capabilities as per:

Provisioning: setting up the environment and also resources.

Configuration management: managing all configuration files.

Application deployment: deploying of application with human readable playbooks.

Continuous delivery: creating a CI/CD pipeline.

Security automation: using modules, roles and playbooks to automate security.

Orchestration: combining all different configurations and automation tasks under one umbrella.

Ansible is one of the most popular automation tool among Software engineers, Ansible is the first choice for the Automation process, and also Ansible is called as “Darling” of DevOps. Ansible does a great job of automating Docker and operationalizing the process of building and deploying containers.

If you’re someone from a traditional IT system, for example, it can be hard to add container-tooling functionality. But Ansible removes the need to do processes manually.

Future in Ansible

As we discuss earlier using Ansible with Docker simplify your processes by allowing you to work with containers and to automate all that work, It’s no wonder the Ansible-Docker combination is so popular. And learning how to use Ansible with Docker won’t just benefit your organization, it also benefits you on your Payscale, according to Payscale, the average salary of a developer with Ansible skills is $130,000 per year, and some developers earn even more.

According to Dice, Ansible is the highest-paying DevOps skill. Ansible is probably the only widely-used automation tool that allows us to describe the whole deployment uniformly, Ansible Collections play a central role in Ansible’s flexibility. They provide, among other things, integrations with cloud providers that unlock cloud-management capabilities.

So Ansible is not going anywhere and have lots of job profile and stable career with Ansible.

If you want learn more about Ansible and want a Certification Course of Ansible I would like to suggest you DevOpsSchool.com, one of the top institute for Ansible Certification Training Course to kick start your career in the field of Automation.

I hope you find this particular blog helpful and informative about Ansible.

Thank You!!

Tagged : / / / / / / / /