https://github.com/dbackowski/bootstrap_mac_vendor
jQuery (requires bootstrap) plugin to show vendor of mac address.
https://github.com/dbackowski/bootstrap_mac_vendor
jquery jquery-plugin mac-address vendor
Last synced: about 1 month ago
JSON representation
jQuery (requires bootstrap) plugin to show vendor of mac address.
- Host: GitHub
- URL: https://github.com/dbackowski/bootstrap_mac_vendor
- Owner: dbackowski
- License: mit
- Created: 2015-10-01T15:44:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-22T08:57:22.000Z (about 8 years ago)
- Last Synced: 2026-02-20T01:58:44.748Z (4 months ago)
- Topics: jquery, jquery-plugin, mac-address, vendor
- Language: JavaScript
- Size: 4.21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# bootstrapMacVendor [](https://travis-ci.org/dbackowski/bootstrap_mac_vendor)
jQuery (requires bootstrap) plugin to show vendor of mac address.
## Example Usage
```html
00:0A:CD:00:CC:F8
```
```javascript
$('.mac_vendor').bootstrapMacVendor();
```
Move mouse over mac address and popover with vendor data will appear:

```html
00:15:60:B1:AB:CB
```
```javascript
$('.mac_vendor').bootstrapMacVendor({ mac: function(event) {
return $(event).data('mac');
}
});
```

## Options
* title - popover title (default: 'Producent')
* noData - no data found message (default: '- brak danych -')
* mac - mac source function (default: $(this).html();)