jQuery selector for PDF documents

Category
jQuery
Date Created
26th Jan 2010
Last Updated
9th Jul 2010

jQuery selector for PDF documents

Question

How to select PDF documents for jQuery

Answer

To select PDF documents use the following selector:

$("a[href*=.pdf]")

For example the following will highlight PDF links with a yellow background:

$("a[href*=.pdf]").css("background", "yellow")

Related terms