This is probably really simple, but the prototype docs on the $$(function) really suck. What do I DO with all the items once the function gives them to me?
First I tried:
$$('div.category').style.height = 400 +"px";
Then:
$$('div.category').each(.style.height = 400 +"px");
Finally:
for (x in $$('div.category'))
{
x.style.height = 400 +"px";
}
None of them are working. Help?
This is probably really simple, but the prototype docs on the $$(function) really suck. What do I DO with all the items once the function gives them to me?
First I tried:
$$('div.category').style.height = 400 +"px";
Then:
$$('div.category').each(.style.height = 400 +"px");
Finally:
for (x in $$('div.category'))
{
x.style.height = 400 +"px";
}
None of them are working. Help?
Share Improve this question edited Dec 28, 2011 at 10:09 Rob W 349k87 gold badges807 silver badges682 bronze badges asked Feb 17, 2010 at 23:33 ck_ck_ 3,82910 gold badges52 silver badges77 bronze badges2 Answers
Reset to default 6$$('div.category').invoke('setStyle', { height: '400px' });
Read more on invoke.
$$('div.category').each(function(d){
d.style.height = '400px';
});