Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression. Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value. Properly align and format text in…
Author: Mohit Sharma
How to force close the running app in the mac.
Hi, Guys in this tutorial we going to learn how you can force close the applications on the mac. this can help you even your mac is going to hang. Step 1:- Long Press option + ⌘ + esc. Step 2:- Then select the app in the Force Quit window and click Force Quit. Finally,…
How to add the custom menu in the admin area in admin menus and admin bar in WordPress?
In this tutorial, we are going to learn how we can add the menu in the admin area and the top admin bar using the custom code. Bellow has code to add the menu in the admin menu. add bellow the code to display the page content. The code for we are going to add…
Laravel artisan commands cheat sheet
In this article, we have a cheat sheet of the Laravel artisan commands. below are the most important commands we usually use those commands in the projects. Create the new Project in the laravel The Laravel installer is simple and easy. Generate a unique key to your application in .env file Starting Development Server Enabling…
Is it possible to display a custom message in the beforeunload popup?
You can’t set custom messages anymore in most modern browsersIn order to set a confirmation message before the user is closing the window, you can use jQuery Javascript It’s important to notice that you can’t put confirm/alert inside beforeunload A few more notes: Mohit SharmaHello Friends, I’m Mohit Sharma founder of tutrialwala.com, Full Stack Web…
How to stop the page loading until do not get a response from ajax?
You can do it with the ajax function with the async property set to false. Mohit SharmaHello Friends, I’m Mohit Sharma founder of tutrialwala.com, Full Stack Web Developer. Expertise in WordPress, PHP, Laravel, Angular, and Frontend Development. In this publication, I share everything I know about PHP frameworks and Javascript frameworks, packages, and tools. Have a project in mind?…
How to add the product into Cart and byPass the Cart page redirect to the checkout page?
You can actually do this without any additional code. WooCommerce supports adding items to the cart via a ?add-to-cart URL parameter. If you send someone to any page, followed by the URL parameter ?add-to-cart=21 it will automatically add the product with ID 21 to their cart. In this case, you can send them straight to the Checkout page. This is what…
How to Get the last segment of an URL in JavaScript?
In this tutorial, we are going to learn about how to get the last segment of a URL or path using JavaScript. let’s take a URL example:- To get the last segment css from the above URL, we can use the split() the method by passing a / as an argument and we need to call the pop() method on it. Example: Sometimes,…
How to show confirm box in jQuery?
In some cases, in the project, we need confirmation from the users. like if users are trying to delete any data from the database. to confirm that want to delete the data. we can use the jQuery confirm box. and where the user can confirm his choise. jQuery confirm(), which displays a prompt and returns true or false based on…
How to show the disappeared Chrome address bar in the mac OS?
Sometimes users get the wired issue after update chrome. or some time by mistake. to fix this issue you need to press Command + Shift + F on MAC to show or hide the navigation bar. Mohit SharmaHello Friends, I’m Mohit Sharma founder of tutrialwala.com, Full Stack Web Developer. Expertise in WordPress, PHP, Laravel, Angular, and Frontend Development. In this publication, I share…