Enumerate through all href using jQuery – Update all URLs on page using jQuery

I first tried doing the following:

$.each($('a'), function (index, value) {
                alert($('a')[index]);
            });

Well, the above code works and gives you the absolute URLs, however, you can’t make any change to the anchor tag itself, which is why most likely you are enumerating. Therefore, I rewrote the code as follows:

$('a').each(function () {
   alert($(this).attr('href'));
});

You can clearly see, this is indeed the right way to go!

Comments

Popular posts from this blog

Unable to delete Shared Services Provider in SharePoint (MOSS)

Cannot add a SimpleContent column to a table containing element columns or nested relations

Future of Hard-Disk Drives?