I have the following code which does:
- Grabs text from an element on the page
- Filters for the particular element
- Splits on the '\n'
- Removes all elements of the array that are white space
This seems to take a little more time than I'd like and doesn't remove all the whitespace filled elements of the array, as you might expect.
Just for reference I then combine the two arrays into one and load the scripts and styles using YepNope. This process takes about 1.5s which is really long for the user to wait.
How can I improve the speed of this?
var $containerHtml = $(html);
// Add the scripts
scriptArray = $.grep($containerHtml.filter('#includeScripts').text().split('\n'), function (element, index) {
return element !== "" && element !== " ";
});
// Add the styles
styleArray = $.grep($containerHtml.filter('#includeStylesheets').text().split('\n'), function (element, index) {
return element !== "" && element !== " ";
});
// Combine the two arrays into 1
combinedArrays = scriptArray.concat(styleArray);
// Load the scripts and styles
yepnope([{
load: combinedArrays,
callback: function (url, result, key) {
if (window.console && window.console.firebug) {
console.log("Loaded " + url);
}
}}]);