Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
  function insertParamIntoField(anchor, param, field) {
       var query = anchor.search.substring(1, anchor.search.length).split('&');

       for(var i = 0, kv; i < query.length; i++) {
          kv = query[i].split('=', 2);
          if (kv[0] == param) {
             field.value = kv[1];
             return;
          }
       }
    }


$(function () {
    $("a.reply").click(function (e) {
       console.log("clicked");
       insertParamIntoField(this, "replyto", $("#inputField")[0]);
       e.preventDefault();
       return false; // prevent default action
    });
});

the html file

<textarea name="inputField" id="inputField" tabindex="1" rows="2" cols="40"></textarea>
    <a class ="reply"  href="home.php?replyto=username">reply</a>

this is my script what it deos it when the user clicks the reply link it prints @username, but i was wondering if i was at the button of the page and clicked reply, i want the focus to go back up on the textarea at the top? i was thinking along the lines of using #tags in html but is thier a way to do in jquery/javascript!! thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

You can call $("#inputField").focus().

share|improve this answer
cheers thanks mate – getaway Sep 14 '10 at 5:42
Please accept the answer. – Paul Schreiber Sep 14 '10 at 5:43
accepted!!!!!!!!! – getaway Sep 14 '10 at 5:49
how do put a space when on focus &nbsp – getaway Sep 14 '10 at 5:51
1  
What do you mean? – Paul Schreiber Sep 14 '10 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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