We need to edit a page in firefox on the live after opening the page. We need to add some comments like this within the head tag of the page.

<!-- 
   abcdefg
-->

We tried firebug, but it is not helping us to add this in head. Opera browser has inbuilt editing which allows us to save. But we could not find similar thing in firefox or IE. Your help is greatly appreciated.

link|improve this question
Why you want to edit a live page, after loading? – vidit Dec 15 '11 at 8:07
1  
Please elaborate your question, what do you mean by editing, do you intend to save your edits and where to? – Oleg Mikheev Dec 15 '11 at 8:49
I have an extension which will search the html comment for a particular string under head tag. So I wanted to add a comment by editing the source and test the extension in the page. I tried saving the page, editing and opening it again, but it is not working as the extension is validating the site also. – Mohan P Dec 15 '11 at 9:40
Forgot to mention that I do these things very easily in Opera(view->sources->Apply changes), but the extension I have works only for firefox. – Mohan P Dec 15 '11 at 9:41
feedback

closed as not a real question by casperOne Dec 15 '11 at 16:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

this should work in firebug (from "Console");

var comment = document.createComment('abcdefg');
document.head.appendChild(comment);

when in "HTML" (with option "Show comments") this should be visible as last item of your head.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.