imacrayon / alpine-ajax

An Alpine.js plugin for building server-powered frontends.

Home Page:https://alpine-ajax.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

on href click, change url location

2peter3 opened this issue · comments

Hey,
is it possible to change the url location on click?

Thanks

Sure you can do that without using this plugin:

<a x-data="{ url: '/the/original/link' }" x-ajax="content" :href="url" @click="url = '/a/different/link'">Link</a>


<div id="content"></div>