Issue #4391
This test-case is intended for Issue #4391
- Can not use $ for jQuery in console.
Jan Odvarko, odvarko@gmail.com
- Open Firebug and enable the Console panel.
- Type following in to the command line:
$("testElement")
- Press Enter
- The result should be:
>>> $("testElement")
<div id="testElement">
- Load jQuery by clicking this button:
- Type following in to the command line:
$("#testElement")
- The result should be:
>>> $("#testElement")
[div#testElement]
Test Element