GetSimple Support Forum

Full Version: TIP: delete buttons, × not X
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I cannot stand seeing X for delete.

Here is something to fix those plugin that still use X for delete. eg. i18n plugins

I use it in hook_footer with my hook components plugin.
Code:
<script type="text/javascript">
$('a').filter(function () {
    return $(this).text() === "X";
}).html('&times;');
</script>