I am trying to develop a chrome extension where in a popup.html page will be loaded whenever I clicked on the icon in the address bar.
Popup.html has set of text area tool and a submit button at the end.
The value that user gives in this popup.html page is then send to content page. Content page also contains similar types of text area wherein this value is set.
Now I wrote a javascript code in this content.js page, that after values given by user is set a click events are performed.
The first button is successfully clicked by my javascript code which result into refresh of the content page and hence my code for second button click using javascript doesnt work.
Please help me with this.
I want to continue executing javascript on my content page even after content page gets refresh.