Bug Tracker

Ticket #1321 (closed bug: duplicate)

Opened 1 year ago

Last modified 1 year ago

[Critical Bug] ID selector

Reported by: alexo Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.1.3 Component: core
Version: 1.1.2 Keywords:
Cc: Needs: Review

Description (last modified by john) (diff)

Having an ID which contains ".", does not work correct.

Code: <script>

$(function() {

var $o = $("#div_container.bug"); var o = document.getElementById('div_container.bug');

});

</script> <div id="div_container.bug"></div>

Attachments

Change History

Changed 1 year ago by klaus

Duplicate and fixed already, see #143

Changed 1 year ago by john

  • status changed from new to closed
  • component changed from ajax to core
  • resolution set to duplicate
  • description changed from Having an ID which contains ".", does not work correct. Code: <script> $(function() { var $o = $("#div_container.bug"); var o = document.getElementById('div_container.bug'); }); </script> <div id="div_container.bug"></div> to Having an ID which contains ".", does not work correct. Code: <script> $(function() { var $o = $("#div_container.bug"); var o = document.getElementById('div_container.bug'); }); </script> <div id="div_container.bug"></div>
Note: See TracTickets for help on using tickets.