I would imagine you should just be able to unbind the onkeyup event
with .unbind()
example
$("#text").unbind('onkeyup');

from there you can attach your own event handlers

Reply via email to