with google apps script using IE 9 image.setStyleAttribute(“position”, “fixed”);
is not working for me. It works fine in chrome and ff. any ideas?
The image is shown, but it moves when I scroll. Anyone got fixed to work on ie
(fixed is not supported before version 7)
var app = UiApp.createApplication().setTitle('fixed pos');
var image = app.createImage("BMW_700_sport_BW_1.JPG");
image.setStyleAttribute("position", "fixed");
app.add(image);
try this: