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

How to Use Change Attributes Properties in jQuery?

So in this blog, we’re going to learn that How to Use Change Attributes Properties in jQuery? So let’s go ahead and do that for first in index.html, with help of style.css & main.js and define- In this main.js To read the current value of an attribute, use attr() with only one argument: the name of the attribute you … Read more

How do you transition multiple properties in CSS & HTML?

You know that a what is transition property in the previous blog. transition property can transition two (or more) CSS properties by separating them with a comma in your transition or transition-property property. You can do the same with duration, timing functions, and delays as well. If the values are the same, you only need to specify … Read more

How to use Form Handling in javascript

Form Handling JavaScript provides access to the forms within an HTML document through the Form object known as HTMLFormElement in the DOM. Which is a child of the Document Object. Properties Properties Value Description accept-charset UTF-8 Specifies the charset used in the submitted form (default: the page charset). action URL Contains a URL that defines … Read more

What is a window object in JavaScript? What are its properties?

Window Object Window object represents the browser’s window or potentially frame, that a document is displayed in. As long as a browser window is open, even if no document is loaded in the window, the window object is defined in the current model in memory. All global JavaScript variables, functions and objects automatically become members … Read more

How do I manipulate using DOM Table in JavaScript?

HTMLTableElement HTMLTableElement interface provides special properties and for manipulating the layout and presentation of tables in an HTML document. PropertiescaptiontHeadtFootrowstBodies MethodscreateCaption()deleteCaption()createTHead()deleteTHead()createTFoot()deleteTFoot()insertRow()deleteRow() Properties caption – This property represents the table caption. If no caption element is associated with the table, it can be null. tHead – This property represents  the table’s <thead> element. Its value can … Read more

CSS manipulation in JavaScript

CSSStyleDeclaration Object The CSSStyleDeclaration object represents a collection of CSS property-value pairs. It is used in API : HTMLElement.stylewindow.getComputedStyle( ) Properties cssText length parentRule Methods getPropertyValue(property)getPropertyPriority(property)removeProperty(property)setProperty(property, value, priority)item(index) Style Property The style property is used to get or set the inline style of an element. While getting, it returns a CSSStyleDeclaration object that contains a … Read more

Manipulation Attributes in JavaScript

Attributes The attributes property returns a live collection of all attribute nodes registered to the specified node. It is a read-only property. Syntax:-Element.attributes[index/key] Attr Object Properties name (do not use nodeName) value (do not use nodeValue or textContent or appendChild() or insertBefore( ) or removeChild( ) or replaceChild( ) these all are deprecated for attr … Read more

What is the Purpose of the Node Object Property in JavaScript

Properties of Node Object The Node object represents a single node in the document tree. nodeName nodeValue nodeType textContent parentNode childNodes firstChild lastChild previousSibling nextSibling nodeName The nodeName read-only property returns the name of the current node as a string. CDATASection “#cdata-section” Comment “#comment” Document “#document” DocumentFragment “#document-fragment” DocumentType The value of DocumentType.name Element The … Read more

How can I use math Object Properties in JavaScript?

Math The Math object holds a set of constants and methods that enable more complex mathematical operations than the basic arithmetic operators. We can not instantiate a Math Object. The Math object is static so it‟s properties and methods are accessed directly. Ex:-Math.PIMath.abs( ) Properties E Returns Euler’s number (approx. 2.718) LN2 Returns the natural … Read more

How do you use Arrays in JavaScript?

Array Arrays are a collection of data items stored under a single name. Array provides a mechanism for declaring and accessing several data items with only one identifier, thereby simplifying the task of data management. We use an array when we have to deal with multiple data items. Arrays are a special type of object. … Read more