For some reason the code at
the link doesn't seem to work with more than one element on the page. It says that it takes all selectors so i thought it'd work. I have one set up as '#query' and '#posts' and then a second as "#query2", '#posts2'. But it only seems to do the live update for the first one completely ignoring the second. They are both called/defined with
- $(document).ready(function (){
$('#query').liveUpdate('#posts').focus();
$('#query2').liveUpdate('#posts2').focus();
});
For some reason it doesn't seem to work with the second one. I don't know why this is, and it might just be some sort of issue with how jquery maps to the events but i have no idea why it wouldn't work since all other bindings work that i've used.