How to change the style of an HTML element (tag) with Prototype

1 Answer

0 votes
<!DOCTYPE html>
<html>
  
<head>
<script src="http://ajax.googleapis.com/ajax/libs/prototype/1.7.2.0/prototype.js"></script>
</head>
  
<body>

<p id="p-id"></p>

<script>        
 
// Prototype
 
function set_p() 
{
    $("p-id").writeAttribute("style", "color:green").insert("Prototype")
}

Event.observe(window, "load", set_p);

/*
run:
  
"Prototype" green color text in "p-id"
    
*/

</script>
</body>
</html>

 



answered Jul 30, 2015 by avibootz

Related questions

1 answer 231 views
1 answer 275 views
1 answer 255 views
1 answer 262 views
...