Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,128 questions

40,777 answers

573 users

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

...