How to declare variables this way:
var sarr = $("#crop_vals").find("input");
$(sarr).each(function() {
var $(this).attr("id") = $(this).val();
});
What I want is to have var named the id equivalent to the value.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To set the “variables” globally (though you shouldn’t do this because it’s asking for trouble)
To set them in a safer way, you could do
and access with
myVars[ id ].