I have a quick, beginners-type-question. If I were to use jQuery and some other framework, would the following statement be problematic:
jQuery(document).rea
What you've shown is correct except that you will want to replace all instances of '$'. You will then be overriding the '$' function.
jQuery(document).ready(function () { jQuery("input[name='password']").focus(function () { jQuery("input[value='login']").attr("checked", "checked"); }); });