Is there any JQuery event which would set the text box value in another screen which is opened in another tab.
e.g. If my new connection and view connection screen are opened in two IE windows, I changed circuit which is set in object reminder in one window. It should change the circuit name which is set in all window also.
It is not on a button click. It should fire after an ajax call.
e.g:
success : function(data) {
$('#cirIdInMainGSP').val(selectedCirId);
}
But, it is changing the value in current window where I am, not in other window. How can I set the values in other window without refreshing it?
My scenario is I have a global textbox which is displayed in all the pages. In any of the page I can change the text box value. Just after changing the value the same should be displayed in all the windows wothout refershing. As of now,I have to refresh my other pages to see the changed value. Refresh by F5.
If any idea you have it would be great.
You can use HTML5 localStorage to save data in browser. Save it on every key press of that textbox. Try to read it by using a timer on the other page.