Skip to content

Value callback in jQuery

Value callback is a feature of jQuery methods such as .css() and .each().

$(document).ready(function() {
	$('div.chapter a[href*="wikipedia"]').attr({
		rel: 'external',
		title: function() {
			return 'Learn more about ' + $(this).text() + ' at Wikipedia.';
		},
		id: function(index, oldValue) {
			return 'wikilink-' + index;
		}
	})
})

天上的神明与星辰,人间的艺术和真纯,我们所敬畏和热爱的,莫过于此。