The solution is jQuery.map
Instead of this:
a.map(function( ) { });
You have to do
jQuery.map(a, function( ) {
//what ever you want todo ..
}
The solution is jQuery.map
Instead of this:
a.map(function( ) { });
You have to do
jQuery.map(a, function( ) {
//what ever you want todo ..
}