import wixData from ‘wix-data’;
$w.onReady( function () {
//TODO: write your page related code here…
$w(“#button1”).onClick( (event) => {
$w(“text8”).value = ‘please work’
} );
});
import wixData from ‘wix-data’;
$w.onReady( function () {
//TODO: write your page related code here…
$w(“#button1”).onClick( (event) => {
$w(“text8”).value = ‘please work’
} );
});
Hello,
It should be $w(“#text8”). text instead of .value.
Because its a text not an input field .
GoodLuck,
Mustafa
thanks bro!!! the missing # killed me