mysql grant all privileges to a user

mysql grant all privileges to a user

mysql grant all privileges to a user The GRANT statement is used to assign full control over a specific database by providing all privileges. Use the below syntax to assign privilege to the user. GRANT ALL PRIVILEGES ON mydb.* TO ‘myuser’@’%’ WITH GRANT OPTION; /* I hope the above syntax will help you. */ mysql […]

Add to cart in Shopify using Ajax Jquery

Add to cart in Shopify using Ajax Jquery

Add to cart in Shopify using Ajax Jquery Hi in this tutorial we will integrate add to cart in Shopify using Ajax:- Step 1:- First you need to change the add t cart button to below. Also, you need to add a unique id or class to the Add to cart form like below:- Add […]

Set the value of an input field using javascript

Set the value of an input field using javascript

Set the value of an input field using javascript document.getElementById(“myid”).value = “My value”; how to set the value of text input field using javascript,set value of form field in javascript,set the value of a input field with javascript,set the value of input field javascript,set value of input using javascript,set value of input javascript,javascript how to […]

How to change the style of the title attribute

How to change the style of the title attribute

How to change the style of the title attribute You can change the title attribute design using CSS. In this code snippet, we will use an anchor tag. //HTML Site Link //CSS a { position: relative; display: inline-block; margin-top: 20px; } a[title]:hover::after { content: attr(title); position: absolute; top: -100%; left: 0; } how to change […]

Hide and show element using plain javascript

Hide and show element using plain javascript

Hide and show element using plain javascript Please check the below code snippet:- //HTML Click Me This is my DIV element. // JS function ToggleElement() { var x = document.getElementById(“myDIV”); if (x.style.display === “none”) { x.style.display = “block”; } else { x.style.display = “none”; } } hide element via javascript,hide and show elements in javascript,hide […]

How to Add Your WordPress Site to Google webmaster tool

How to Add Your WordPress Site to Google webmaster tool

How to Add Your WordPress Site to Google webmaster tool To optimize your website for SEO you need to add your website to the google search console ( Google webmaster tool ). Google offers more tools like google analytics to track your website visitors. In this tutorial, we will show you how you can add […]

youtube added new new feature of zoom a video

Youtube added new feature of Zoom a Video

Youtube added new feature of Zoom a Video Youtube added a new feature on 18-01-2022 of zooming on a video. New update looks like the below screenshot:- In this update, you can hover and play the videos on youtube. youtube new features 2021 youtube new features 2022 youtube new features 2020 youtube new features 2017 […]

body fat calculator

Body Fat Calculator Using JQuery and html

Body Fat Calculator Using JQuery and html In this tutorial, I am showing you how to create a body fat calculator using HTML and jquery. 1) Create a form of below fields:- Gender Male Female Age Weight Height Neck Waist Hip Calculate 2) Add some style 3) Add jquery library and below code snippet Below […]

Scroll to Top