Tag: Chrome

Chrome Devtool Tips – $*() Aliases

Chrome Devtool Tips – $*() Aliases

Chrome Devtool provides the shortcut aliases to access the document.querySelector and document.querySlectorAll functions. $() – Alias for document.querySelector function. It may overridden by jQuery when it used in your site. Example: $$() – Alias for document.querySelectorAll function. Example: $x() – Function to find the DOM elements by an XPath expression. Example:

Chrome Devtool Tips – Using Recently Evaluated Expression in Console

Chrome Devtool Tips – Using Recently Evaluated Expression in Console

Chrome Devtool console provide a shortcut to access the output of the most recently evaluated expression. $_ is the shortcut to access the values of most recently evaluated expression in the console. Which is use full when you want to process the output from previously evaluated expression without assigning to a variable. You can find…

Read More Read More