A
A
Airslip2017-04-18 13:38:11
Yii
Airslip, 2017-04-18 13:38:11

How to create a link to another page in Yii2 with focus on an element?

There is a link:

<a href="<?=Yii::$app->urlManager->createUrl(["site/item", 'c' => $c->code, 'code' => $city->code])?>" class="big-button">Подать заявку</a>

What should be written so that this link not only leads to the site/item page, but after loading it also focuses on the element with id="form"?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
padlyuck, 2017-04-18
@Airslip

put autofocus on the input on the landing page, add an anchor in the link

<?= yii\helpers\Html::a('Подать заявку',["site/item", 'c' => $c->code, 'code' => $city->code ,'#'=>'form'],['class'=>'big-button'])?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question