Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

tab change hash

// jquery
$('a').on('click', function (e) {
    e.preventDefault();
    let link = $(this).attr('href');
    if (link.includes('#') !== false) {
    window.location.hash = this.hash.substr(1);
	}
});
 
PREVIOUS NEXT
Tagged: #tab #change #hash
ADD COMMENT
Topic
Name
1+1 =