1 | | JQuery javascipt included by django admin calls noConflict method ( http://api.jquery.com/jQuery.noConflict/ ). This method removes variable $ shortcut from javascript global namespace. |
2 | | Site specific code can include own jQuery code to enrich admin pages. In this case, commonly used variable $ is undefined and page is broken. |
3 | | |
4 | | (In addition to described major problem, jQuery can be included twice (one by django and one by site) causing problem with strip of jQuery plugins after redefinition and jQuery version is also enforced by admin) |
5 | | Please make deeper analysis next time before change with relationship to around code. |
| 1 | JQuery javascipt included by django admin calls noConflict method ( http://api.jquery.com/jQuery.noConflict/ ). This method removes variable $ shortcut from the global namespace. |
| 2 | Site specific code can include an own jQuery code to enrich admin pages. In this case, commonly used variable $ is undefined and page is broken. |