{"name":"jQuery.proxy","type":"method","title":"jQuery.proxy()","deprecated":null,"removed":null,"desc":"Takes a function and returns a new one that will always have a particular context.","categories":["events/event-handler-attachment","utilities","version/1.4","version/1.6"],"entries":[{"return":"Function","signatures":[{"added":"1.4","argument":[{"desc":"The function whose context will be changed.","name":"function","type":"Function"},{"desc":"The object to which the context (this) of the function should be set.","name":"context","type":"PlainObject"}]},{"added":"1.4","argument":[{"desc":"The object to which the context of the function should be set.","name":"context","type":"PlainObject"},{"desc":"The name of the function whose context will be changed (should be a property of the context object).","name":"name","type":"String"}]},{"added":"1.6","argument":[{"desc":"The function whose context will be changed.","name":"function","type":"Function"},{"desc":"The object to which the context (this) of the function should be set.","name":"context","type":"PlainObject"},{"desc":"Any number of arguments to be passed to the function referenced in the function argument.","name":"additionalArguments","type":"Anything","optional":"true"}]},{"added":"1.6","argument":[{"desc":"The object to which the context of the function should be set.","name":"context","type":"PlainObject"},{"desc":"The name of the function whose context will be changed (should be a property of the context object).","name":"name","type":"String"},{"desc":"Any number of arguments to be passed to the function named in the name argument.","name":"additionalArguments","type":"Anything","optional":"true"}]}],"examples":[{"desc":"Change the context of functions bound to a click handler using the \"function, context\" signature. Unbind the first handler after first click.","html":"\n