Can Moi Buttons in HTM files execute code in the assoicated JS file

 From:  Michael Gibson
11713.10 In reply to 11713.8 
Hi Frederick,

re:
> I'm a little unclear of why standard HTML attributes (like width) work on some things but not others.

Width as a direct attribute on an element is basically antique and isn't standard
anymore. It only works on a few element types.

The standard way to set a width is by the CSS width property:

<div style="width: 200px"><div>

- Michael