PHPackages                             monsieurbiz/mbiz\_ajax - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. monsieurbiz/mbiz\_ajax

ActiveMagento-module[Utility &amp; Helpers](/categories/utility)

monsieurbiz/mbiz\_ajax
======================

Magento module which adds some ajax features.

0.1.0(9y ago)135GPL-3.0PHP

Since Jul 22Pushed 9y ago1 watchersCompare

[ Source](https://github.com/monsieurbiz/Mbiz_Ajax)[ Packagist](https://packagist.org/packages/monsieurbiz/mbiz_ajax)[ RSS](/packages/monsieurbiz-mbiz-ajax/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

Mbiz\_Ajax
==========

[](#mbiz_ajax)

This modules adds `AJAX_` handles if the request is performed using ajax call.

It also adds a simple JSON response of the category view.

You have to write your own ajax if you want to make it works.

Javascript example:

```
(function ($) {
  $(document).ready(function () {
    // Catalog Category View
    if ($('.catalog-category-view').length) {

      // If we have a load more button
      var $more = $('.js-load-more');
      if ($more.length) {

        // On click on this button
        $more.click(function () {

          // Call the next page url in ajax
          var pagerData = {};
          pagerData[$more.attr('data-page-var-name')] = $more.attr('data-next-page');
          $.getJSON(
            {
              url: $more.attr('data-url'),
              dataType: 'json',
              data: pagerData,
              success: function (data) {

                // Disable if last page
                if (data.is_last_page) {
                  $more
                    .attr('disabled', true)
                    .addClass('disabled')
                  ;
                }

                // Insert products
                $('.product-list').append(data.body);

                // Update next page
                $more.attr('data-next-page', data.next_page);
              }
            }
          );

        });
      }
    }
  });
})(jQuery);
```

You can also use the handles to perform some updates on the page in ajax mode.

Example:

```

            catalog/product/list_ajax.phtml

```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3582d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c469cf3368841a646d6e69475e8b79861ee299bbe5c2382f50459e3ab3607320?d=identicon)[jacquesbh](/maintainers/jacquesbh)

---

Top Contributors

[![jacquesbh](https://avatars.githubusercontent.com/u/858611?v=4)](https://github.com/jacquesbh "jacquesbh (1 commits)")

### Embed Badge

![Health badge](/badges/monsieurbiz-mbiz-ajax/health.svg)

```
[![Health](https://phpackages.com/badges/monsieurbiz-mbiz-ajax/health.svg)](https://phpackages.com/packages/monsieurbiz-mbiz-ajax)
```

###  Alternatives

[devforest/laravel-dynamic-report-generator

A package for dynamic report generation with drag-and-drop interface in Laravel

3112.2k](/packages/devforest-laravel-dynamic-report-generator)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
