This line $(''+fullId+'') is giving me problems. I've created an array in a different function that gets the #id's of all the inputs in the DOM.
Now with this function i'm trying to create a blur and focus jQuery function. I've set the variable fullId to prepend the '"#' and append the '"' to the variable name, but how do I get it to work?
$(''+fullId+'') is not doing the trick and neither does $(fullId)
function focusBlur () {
var inputId = 0;
var fullId = 0;
for(var i=0; i<size; i++) {
inputId = arr.shift();
fullId = "\"#"+inputId+"\"";
$(''+fullId+'').blur(function() {
});
$(''+fullId+'').focus(function() {
});
}
}