Category «JQUERY»

Top 300 React Interview Questions and Answers

Here you will find more than 300 Question and their answers for ReactJS (Including Javascript). All questions are submitted by Candidates who appeared in interviews in 2024.Top 300 React Interview Questions and Answers. 1) What is Reactjs, Is it a programming language? React is an open-source front-end JavaScript library to build composable user interfaces, especially for single-page …

How to access nested object in ReactJS

The format of an object in Javascript ot ReactJs can be nested many times and can get complicated quickly.How to access nested object in ReactJS. Now an above object student can be used in your project but how to consume it. We can use this method So using [] we can access any index of …

PHP MySQL Ajax Live Search

Welcome to a tutorial on how to search and display results from the database using PHP and MySQLPHP MySQL Ajax Live Search. In this tutorial we’re going to create a live search box that will search the Movies table and show the results asynchronously. But, first of all, we need to create this table. Step 1: …

Bootstrap Collapsing Sidebar Menu

We can make a collapsing sidebar menu using bootstrap and jQuery .Learn how to create a collapsible sidepanel menu.Bootstrap 4 Collapsible Toggle Sidebar with navbar snippet example is best for all kind .Filter elements, sidebar filter panel bootstrap 4. .side-nav-light for light . Bootstrap 4 is easy to learn . We can make a responsive menu or …

How to make Dependent dropdowns

We can make a dependent dropdown using the jQuery and ajax technique. We will create a level 5 Dropdown using Jquery. We will fetch data from the database without refreshing the page. We have designed a database with four tables. We have four tables in the DATABSE . You can download the source code from …

How to make Avatar Images in jQuery

How to make avatar images in Jquery. Using Jquery we can switch the images. Learn how to create an avatar image with CSS. … height and width that looks good, and use the border-radius property to add rounded corners to an image. Download complete code: Jquery Avatar Images We have used bootstrap 4 for designing and Jquery for …

How to show Database records in PIE Chart using PHP JQUERY

Today we will see how to make a pie chart of graph design in PHP and javascript. We will use canvas.js for graph design. Make a table in the database:- Table name military_table  (id, countrye_name, country_budget) Now make a page index.php <?php $conn = mysqli_connect(‘localhost’,’root’,”,’test’); $sql = “SELECT country_name,country_budget FROM military_budget”; $result = mysqli_query($conn, $sql); …

How to make a dependent dropdown in Jquery Php

We can make a dependent dropdown using Jquery and PHP. We will level two drop-down in jquery and PHP. We will use select tag of HTML for dropdown <select><option></option></select> Now create database in PHPMyAdmin or MySQL workbench. Now make four columns in the database table ( student )  :- id ,name,age,phone Now create a page …