Tool tips on Fill in the blank Entry Field

I am using a Fill in the Blank type question. when I publish it, there is a tip that pop up when the user mouses over the Entry Field. The course I am working on is not supposed to have any of these. I can eliminate almost all with the option when publishing. But this one stays no matter what I do.


Can someone please tell me how to remove it?

Discussion (1)

You can't remove the tooltip of an input field by unchecking "Create alt tags for buttons and images" because the tooltip doesn't come from an alt tag but from the title attribute. You can remove it by adding an action to the input field:


On: Show

Action: Run JavaScript

JavaScript: document.getElementById("id").setAttribute("title", "");


Replace with the html name of the input field. Mind that the html name you can get from the properties of the field is the id of the

that contains the input field. To get the actual input field add "id" to the html name, so the correct id will look similar to this: "entry39534id".


Tim

Discussions have been disabled for this post