Autocomplete jquery ui

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Autocomplete - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-3.6.0.js"></script> <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script> <script> $( function()…

0 Comments

Accordian Jquery UI

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Accordion - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-3.6.0.js"></script> <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script> <script> $( function()…

0 Comments

Dragable, dropable, resizable using jquery ui

A. Dragable <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Draggable - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <style> #draggable { width: 150px;…

0 Comments

Generate QR Scanner In Laravel

Friends, in today's date, a QR code scanner has become so important that today we make payments only through QR code. Our PhonePe, Google Pay, our courier system, everything works…

0 Comments

Generate QR Code In Laravel

Friends, in today's date, a QR code scanner has become so important that today we make payments only through QR code. Our PhonePe, Google Pay, our courier system, everything works…

0 Comments

Dynamic CSS Class in Vuejs

A. Change More Class on its dynamic value <template> <h3 :class="{colorChange:colorChangeJs}">Your Select Fruits Are: {{ Fruits }}</h3> </template> <script>  export default {     name: "HeaderComponent",     data() {…

0 Comments