Latest

 thumbnail

How to Show and Hide Elements with jQuery

January 27, 2021

To show and hide elements with jQuery, use the show() and hide() methods. The hide() and show() SyntaxBoth the hide...

 thumbnail

How to Order By in Laravel

January 27, 2021
 thumbnail

Laravel: Return JSON Response

January 26, 2021

To return a JSON response in Laravel, use the json() method on the response class, passing the JSON data as an associati...

 thumbnail

jQuery: How to Toggle Class Names

January 26, 2021

To toggle one or more classes with jQuery, use the toggleClass() method. Let's create a button and a jQuery click functi...

 thumbnail

Sublime Text Keyboard Shortcut to Comment Out Lines

January 25, 2021

It is possible to quickly comment-out large blocks of code in Sublime Text using keyboard shortcuts, which we will learn...

 thumbnail

How to Split a String into Array by Delimeter in PHP

January 25, 2021

To split a string into an array by a specific delimiter in PHP, use the explode() function. It will return an array of s...