jQuery jQuery $(‘div’) and $(”) June 27, 2014 Pramod T P Leave a comment $(‘<div/>’) : This creates a new div element. However this is not added to DOM tree unless you don’t append it to any DOM element. $(‘div’) : This selects all the div element present on the page.