Skip to content
Advertisement

Getting META description via jQuery

Let’s say I do a simple AJAX request (in jQuery) like geturl.php?url=http://google.com

and geturl.php is this:

JavaScript

Simple, right?

How would I grab the META description from the returned (really long) string in jQuery?

Here’s what I have so far. Yes, I know, desc is wrong.

JavaScript

Advertisement

Answer

Using regular expressions to parse HTML is bad practice.

Annoyingly, jQuery doesn’t support parsing elements in the head, only the body. So use straight JS instead:

JavaScript

Shamelessly ripped from David Burrows. Thanks, David!

fiddle: http://jsfiddle.net/wCL8W/8/

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement