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).ready(function () {
$("input[name='password']").focus(function () {
$("input[value='login']").attr("checked", "checked");
});
});
That is, the use of '$' within the .ready() function. Should '$' be replaced with 'jQuery' in order to avoid conflicts?