BearmRakCam
New Member
I am not an expert in jQuery and I am trying to pass some variable values from C# to my function called on keyup and onclick events. So far I have something like this:\[code\]$('mydiv').bind('keyup click', function(event) {}\[/code\]but what I need should be:\[code\]$('mydiv').bind('keyup click', function(event, UserId, ControlId) {}\[/code\], where UserId and ControlId are some ids I am getting in code behind from the query string. I am also using jQuery 1.6.4.How can I do this, preferably without using hidden input fields?Thank you.