Welcome to Maddyzone

A modern tech blog sharing practical insights on JavaScript, Angular, React, and Node.js from 11+ years of development experience.

68 Articles
11+ Years
Quality Content

Latest Articles

Deep dives into modern web technologies, best practices, and real-world solutions.

How to get current url in JavaScript and jQuery ?

TheĀ [window.location](https://developer.mozilla.org/en-US/docs/Web/API/window.location?redirectlocale=en-US&redirectslug=DOM%2Fwindow.location)Ā read-only property returns a Location object with information about the current location of the document. we see all the property by this below Url http://www.test.com:8082/index.php#tab2?foo=123...

Add menu externally to wp menu list

For add menu externally in wordpress menu list add below code in your functions.php add_filter( 'wp_nav_menu_items', 'myaccount_login_menu_item', 10, 2 ); function myaccount_login_menu_item ( $items, $args...

How I'm using sublime text

In the field of programming, developer’s most of time spent in using keyboard and moving fingers around keyboard and creating some cool stuffs. I have...

.ready() function in jQuery

Description:Ā Specify a function to execute when the DOM is fully loaded. Type:Ā Function() A function to execute after the DOM is ready. While JavaScript provides theĀ loadĀ event...