var standard = $(function(){
//should return reversed iterated standard anchor array
$.each(standard_anchor,function(value){ return (value) })
});
/////
$(function(){
/* should replace all a href values with reversed iterated standard anchor data */
$('a [href]').reverse().each().attr('href', function(){ return ( standard) });
});
/////
so that's what I tried but it didn't work, and I don't know why it didn't work, any suggestions?
standard_anchor is the array name, and var standard is a function I thought could return those array values when used in a function.
document.linkscan be used in place of your query.