Welcome Guest, Not a member yet? Register   Sign In
Creating an auto-suggest field with jQuery
#19

[eluser]Mike DeFelice[/eluser]
The field that you are adding the tags to, does it have the id "tags" ? Besides that, everything looks correct.

I tested it and it seemed to work fine

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">&lt;html &gt;
    &lt;head&gt;
        &lt;title&gt;&lt;/title>
        &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
        [removed][removed]
    [removed]
$(document).ready(function() {
    $(function() {
        $(".tag").click(function()
        {
        var $clickText = $(this).text()
        $("#tags").val($("#tags").val() + $clickText);
            return false;
        });
    });
});
[removed]
            &lt;/head&gt;
    &lt;body&gt;
<ul>
<li class="tag">Test</li>
<li class="tag">Test2</li>
</ul>

&lt;input type="text" id="tags" /&gt;
&lt;/body&gt;&lt;/html>


Messages In This Thread
Creating an auto-suggest field with jQuery - by El Forum - 01-17-2011, 04:21 AM
Creating an auto-suggest field with jQuery - by El Forum - 01-18-2011, 03:33 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-18-2011, 04:37 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-18-2011, 05:28 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-18-2011, 05:36 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-19-2011, 03:09 AM
Creating an auto-suggest field with jQuery - by El Forum - 01-19-2011, 03:58 AM
Creating an auto-suggest field with jQuery - by El Forum - 01-19-2011, 04:11 AM
Creating an auto-suggest field with jQuery - by El Forum - 01-19-2011, 01:43 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 12:06 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 01:40 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 01:44 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 01:51 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 02:34 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 03:16 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 03:47 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 04:12 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 04:35 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 04:47 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 05:01 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 05:06 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 05:17 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-20-2011, 05:45 PM
Creating an auto-suggest field with jQuery - by El Forum - 01-21-2011, 03:07 AM
Creating an auto-suggest field with jQuery - by El Forum - 01-21-2011, 08:59 AM
Creating an auto-suggest field with jQuery - by El Forum - 02-01-2011, 10:54 AM
Creating an auto-suggest field with jQuery - by El Forum - 02-01-2011, 02:44 PM
Creating an auto-suggest field with jQuery - by El Forum - 02-01-2011, 02:47 PM
Creating an auto-suggest field with jQuery - by El Forum - 02-01-2011, 02:55 PM
Creating an auto-suggest field with jQuery - by El Forum - 02-04-2011, 01:49 AM
Creating an auto-suggest field with jQuery - by El Forum - 02-04-2011, 08:35 AM
Creating an auto-suggest field with jQuery - by El Forum - 02-04-2011, 09:34 PM
Creating an auto-suggest field with jQuery - by El Forum - 02-05-2011, 10:23 AM
Creating an auto-suggest field with jQuery - by El Forum - 02-05-2011, 06:06 PM
Creating an auto-suggest field with jQuery - by El Forum - 02-05-2011, 09:26 PM
Creating an auto-suggest field with jQuery - by El Forum - 02-10-2011, 03:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB