MS Query Framework - jQuery-like JavaScript framework with UI components and Bootstrap-like styling
MS Query is a complete JavaScript framework that provides:
// Select elements
$('#app').html('New content');
$('.button').on('click', handler);
$('.item').addClass('active').show();
// Create components
var button = $ms.ui.create('button', {
text: 'Click Me',
type: 'primary',
click: function() { alert('Clicked!'); }
});
var card = $ms.ui.create('card', {
title: 'Card Title',
content: 'Card content here'
});
// Core utilities
$ms.core.log('System ready');
$ms.core.extend(obj1, obj2);
// Module system
$ms.moduleRegistry.register('myModule', moduleDefinition);
// Notifications
$ms.ui.utils.notify('Success!', 'success');
// Modals
$ms.ui.utils.modal({
title: 'Confirm',
content: 'Are you sure?',
buttons: [...]
});
js/ms.js - Main framework filecss/ms.css - Bootstrap-like stylesjs/app.js - Application logicREADME.md - Complete documentation