2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-07 16:59:18 +00:00

fhemweb.js: do not jump to top of the page (Forum #52070)

git-svn-id: https://svn.fhem.de/fhem/trunk@11255 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-04-16 19:28:15 +00:00
parent 213c5e4362
commit 929aaac1bf

View File

@ -199,7 +199,7 @@ FW_jqueryReadyFn()
$("table.attributes tr div.dname") // Click on attribute fills input value
.each(function(){
$(this)
.html('<a href="#">'+$(this).html()+'</a>')
.html('<a>'+$(this).html()+'</a>')
.css({cursor:"pointer"})
.click(function(){
var aname = "#sel_attr"+$(this).attr("data-name");