Hello Dom!
var s = document.getElementsByTagName("p")[0]; s.setAttribute("align", "center"); A B C D Hello Dom! ( on right side ) Hello Dom! ( on left side) Hello Dom! ( at the center ) Display nothing 98 What is the output in the following code?Hello Dom!
var s = document.getElementsByTagName("p")[0]; s.setAttribute("align", "center"); var attr = s.getAttribute( "align" ); document.write( attr ); A B C D Hello Dom! Align TagName Hello Dom! center 99 What is the alert output in the following code?- Green
- Yellow