0

I want to be able to send some element that I selected with JQuery to another browser which opened the same page. Like if focus a textfield, the selection to happen on the second browser too. With a server, that's possible, but is there a way to serialize or somehow transfer the element reference (not id, cause not every element has an id)

blez
  • 4,939
  • 5
  • 50
  • 82

1 Answers1

0

Not so much transfering, but you can "reveal" your values to a specific browser. Try setting up a conditional statement for browser feature detection, within a ajax request on success() or on done(), to then display your DOM reference for a specific browser. Hope this helps.

klewis
  • 7,459
  • 15
  • 58
  • 102