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)

The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.

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