Hi Bacon,
Little confused....
Should I use this:
<style type="text/css">
a
{
-moz-outline: none 0;
outline: none 0;
}
</style>
Or
This:
<style type="text/css">
a:focus
{
-moz-outline: none 0;
outline: none 0;
}
</style>
in the general extension (without form)
Further, looking into your code
Also if usinfg a form and the push button gives the same we need to add onfocus="this.blur(); to the button as shown below
<input type="submit" onfocus="this.blur();" />
Do you suggest I add this in the extension as--
Using form: Yes/ No (Yes will remove
// and apply the below code. This way works in php but I am not sure here-though a page with a form will always be in php!

)
//<input type="submit" onfocus="this.blur();" />
Or this should be added manually if someone is using a form?