/* when document is ready, delegate an event,
* even after the element is rendered
* after the page is loaded
*/
$(document).ready(function() {
$(document).on('mouseover', '.your-child-element', function() {
$(this).focus(); // <- $(this) will return the current element
});
});
Build your docker Create a Dockerfile in your project Run the command docker build . -t "my-app/main" Create an a Private App Container and API key for CLI SideMenu-> Container Registry -> Create private container registry - give a name Go to API settings and create new personal access token with write access Copy the auth token
Sep 3, 2021Steps Create a file in root directory of the project Add in these contents Base Image FROM node:14 Create app working directory WORKDIR /usr/src/app
Jun 21, 2021Newer laptops wifi problem In BIOS, disabled secure boot and enable legacy mode. Install curl sudo apt intall curl Install snapcraft packages This will install following : - docker : sudo snap install docker - datagrip : sudo snap install datagrip --classic
Mar 18, 2021Install Linux CLI in Android Download the App called Termux Run these initial commands one by one to update the latest utils. Accept the prompts by entering Y at most situations apt update && apt upgrade apt install coreutils Install Nodejs
Oct 5, 2020or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up