dimaslanjaka

add alt on img tag

Mar 10th, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.31 KB | None | 0 0
  1. To set alternative text to all the images:
  2.  
  3. $('#map_canvas > img').attr('alt', 'Alternative text');
  4. To set alternative text to images that does not have alt attribute:
  5.  
  6. $('#map_canvas > img:not([alt])').attr('alt', 'Alternative text');
  7.  
  8. #map_canvas = ID Tag
  9. img = <img> tag
  10. Alternative Text = text of alt
Advertisement
Add Comment
Please, Sign In to add comment