MOTOSHARE πŸš—πŸοΈ
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
πŸš€ Everyone wins.

Start Your Journey with Motoshare

jQuery Revisited: A Lightweight Path to Interactive Web Development

What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library designed to simplify HTML document traversal, manipulation, event handling, animation, and Ajax. Released in 2006 by John Resig, jQuery dramatically streamlined JavaScript development at a time when cross-browser inconsistencies and verbose syntax were common obstacles. At its core, jQuery allows developers to do … Read more

How to use JQuery AJAX Method to Call an API?

In this blog in am going to explain that How to use JQuery AJAX Method to Call an API for to load data from external website or external File of etc, by calling APIs, and get the response in JSON or XML formats. So first thing I am going to create a html file and import jquery cdn. If you want to bootstrap css, & js cdn the you can copy from this link Click Here as below- In this code I am using bootstrap cdn with jQuery cdn after that a Script tag in this script tag ajax function call with json data for getting data showing in cosole.log. If you using first time jQuery then you can right button of mouse and select inspect (Ctrl+shift+i) after that showing below tab then select console tab. When you click Here button from document then showing all data which retrieve.

CRUD Operations in Laravel using ajax

Step 1 – Install Laravel 5.8 First we want to Download Laravel 5.8 version for developing Crud application using Ajax. For this you have to open your terminal or command prompt and write below command. It will download Laravel 5.8 in your define directory. composer create-project laravel/laravel=5.8 ajax-crud –prefer-dist Step 2 – Laravel 5.8 Database … Read more

Laravel 8 – Insert record using ajax

Hey friends, I came again to all of you with a new article, must follow below steps to create a CRUD in Laravel using ajax. πŸ“š Step 1 : create a Laravel project using below command. composer create-project laravel/laravel Studentsform πŸ“š Step 2 : Make a model for this, run below command: after running below … Read more

WHAT IS AJAX?

Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β  Introduction:- AJAX stands for Asynchronous Javascript And XML. AJAX is used for fast creating dynamic web pages. It allow web pages to be updated asynchronously by exchanging some amount of data with the server behind the scenes. It is possible to update some parts of a web page without reloading the whole page. There … Read more

AJAX Setup/ Installation

Ajax is a web development technique designed to create highly responsive/ interactive websites. To have a better understanding of AJAX we need to have knowledge of javascript and somewhat XML. The easiest way of implementing AJAX, is by using jQuery. To add jQuery We can use the downloaded version from (jquery.com/download/) and we need to … Read more