Web Development Articles

Page 800 of 801

How to include multiple js files using jQuery $.getScript() method?

David Meador
David Meador
Updated on 17-Feb-2020 770 Views

To use multiple js files, use the same getScript(), which is used to add a single js file. We’re having result.js file with the following code snippet −function CheckJS(){ alert("This is JavaScript - File1"); }We’re having result2.js file with the following code snippet −function CheckJS(){ alert("This is JavaScript – File2"); }ExampleHere's the code snippet to add multiple js files. Here, we will call the function in the above 2 js files − ...

Read More

What is the difference between jQuery.load() and jQuery.ajax() methods in jQuery?

Ricky Barnes
Ricky Barnes
Updated on 17-Feb-2020 639 Views

jQuery ajax() methodThe jQuery.ajax( options ) method loads a remote page using an HTTP request. $.ajax() returns the XMLHttpRequest that it creates. In most cases you won't need that object to manipulate directly, but it is available if you need to abort the request manually.Here is the description of all the parameters used by this method −options − A set of key/value pairs that configure the Ajax request. All options are optional.Assuming we have the following HTML content in result.html file −THIS IS RESULT...ExampleThe following is an example showing the usage of this method. Here, we make use of success handler to ...

Read More

What is the difference between jQuery.post() and jQuery.get() methods in jQuery?

Ricky Barnes
Ricky Barnes
Updated on 17-Feb-2020 351 Views

jQuery post() methodThe jQuery.post( url, [data], [callback], [type] ) method loads a page from the server using a POST HTTP request.Assuming we have following PHP content in result.php file, ExampleThe following is the code snippet showing the usage of this method − $(document).ready(function() { ...

Read More

How to Make Your WebSite – "Device Friendly

Sharon Christine
Sharon Christine
Updated on 23-Jan-2020 267 Views

Do you know that more than half of the world’s population is currently using internet on a regular basis through various devices? It can be a laptop, desktop, Smartphone or any other gadget. Just imagine the tremendous opportunity you have for reaching your potential customers just by doing business online. It is the easiest and quickest medium to reach to the people and let them know about your products and services. You can make hundreds and thousands of actual customers out of them, provided your e-commerce site offers superb user experiences across the various devices.Let’s say you have a built ...

Read More

How to install Doxygen on Ubuntu

Sharon Christine
Sharon Christine
Updated on 20-Jan-2020 13K+ Views

Doxygen is the de facto regular tool for generating documentation from annotated C++ sources, however, it additionally supports different wellknown programming languages akin to C, objective-C, C#, Hypertext Preprocessor, Java, Python, IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL and Tcl. This article explains about-“how to install Doxygen on Ubuntu”To install Doxygen, use the following command –$ sudo apt-get install doxygenThe sample output should be like this –Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required:    libterm-readkey-perl linux-headers-4.4.0-31 linux-headers-4.4.0-31-generic    linux-image-4.4.0-31-generic linux-image-extra-4.4.0-31-generic    linux-signed-image-4.4.0-31-generic Use 'sudo ...

Read More

How to Install Django 1.9 on Ubuntu

Sharon Christine
Sharon Christine
Updated on 20-Jan-2020 411 Views

Django is an excessive stage Python internet framework that encourages speedy development, clean along with pragmatic layout. It takes a lot of care in building a trouble free web development programming language so that you can start writing your app in an easier manner without having to reinvent the wheel. It is an open-source software. This article provides the necessary instructions on – “How to install Django 1.9 on Ubuntu”.Before we start with the Django installation, we should update the Ubuntu repository as shown in the below command-$ sudo apt-get updateInstalling DjangoThere are so many methods which are available to ...

Read More

How to Install Atom 1.6.0 on Linux

Sharon Christine
Sharon Christine
Updated on 20-Jan-2020 465 Views

Atom is a free and open-source text and source code editor for OS X, Linux, and Windows with support for plug-ins written in Node.js, and embedded Git Control, developed by GitHub. Atom is a desktop application built using web technologies. Most of the extended packages have free software licenses and are community-built and maintained. It is having a simple and intuitive graphical user interface and a bunch of interesting features for writing − CSS, HTML, JavaScript and other web programming languages. Among others, it provides support for macros, auto-completion – a split screen feature which integrates with the file manager.This ...

Read More

How To Setup and Configure Ruby on Rails with 'rbenv' on Ubuntu 16.04

karthikeya Boyini
karthikeya Boyini
Updated on 20-Jan-2020 502 Views

In this article, we will learn how to setup and configure Ruby on Rails which is the most popular stack application used by the developers which is used to create sites and web applications. The Ruby is a programming language where the programer’s use with the combination of Rails development framework to make the application development fast and simple.‘rbenv’ is the command-line tools used to install the Ruby and Rails which also provides a good environment for application development using Ruby on Rails. ‘rbenv’ provides the application specific versions of Ruby.PrerequisitesWe needed an Ubuntu 16.04 installed machine with a non-root ...

Read More

How to Set Up and Configure Jekyll Development Site on Ubuntu 16.04

karthikeya Boyini
karthikeya Boyini
Updated on 20-Jan-2020 223 Views

In this article, we will learn how to setup and configure Jekyll Development Site. Jekyll provides the benefits of the Content Management System (CMS) with performance and security which appears in the database-driven sites. It is also called as blog-aware which has features of handling the date-organized contents. It is especially suitable for the people who work off-line, which also provides the lightweight editor with content management which has the version control for tracking the changes made on their websites.PrerequisitesA machine with Ubuntu 16.04 installed.A user with Sudo permissions on the machine.Installing the Jekyll Development Site on Ubuntu 16.04Before we ...

Read More

Angular 2 Vs Angular 1: Lets Checkout the Changes

karthikeya Boyini
karthikeya Boyini
Updated on 20-Jan-2020 287 Views

Since the inception of Angular JS, it has been widely used by many developers worldwide to build their applications. The JavaScript-based open source framework has become popular in developers community due to its great features such as simple and better way to manage MVC components, usage of JavaScript objects and many more.That is the Angular 1 with those great features which made Angular JS a popular and widely accepted framework. But as we know nothing is perfect, there is always scope for improvements, based on that philosophy now it’s time for Angular 2 which comes with many improved features.With its ...

Read More
Showing 7991–8000 of 8,010 articles
Advertisements