javascript - can I use blur in a hidden field, jquery -


can use blur in hidden field in jquery? if not, how can track changes in hidden field

hidden field hidden, won't visible user change something. page author/script can change value , if case, can use change event track changes.

$('#hidden_id').change(function(){   alert('changed value: ' + $(this).val()); }); 

Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -