Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- To set alternative text to all the images:
- $('#map_canvas > img').attr('alt', 'Alternative text');
- To set alternative text to images that does not have alt attribute:
- $('#map_canvas > img:not([alt])').attr('alt', 'Alternative text');
- #map_canvas = ID Tag
- img = <img> tag
- Alternative Text = text of alt
Advertisement
Add Comment
Please, Sign In to add comment