Greasy Fork is available in English.

議論 » 開発

Change the page without Reloading

§
投稿日: 2022/08/05

Hi, i have created an script but i want to make it so it doesn't reload the page when you click on the shortcut

https://greasyfork.org/en/scripts/449016-playlists-buttons

    playlist.onclick = function(){location.href = playlistlink;};

I have tried to use history.pushState but it only changes the URL! And doesn't update the page.

§
投稿日: 2022/08/06

You would have to iframe the whole page. It is still the same thing as reloading, but it's not visible to the user.

§
投稿日: 2022/08/06

I have found a way for it to work!!! :)

All i had to do is remove the function and set the href directly, soundcloud did the rest for me.

§
投稿日: 2022/08/08

there is no need to js or jquery. to stop page reloading just specify the button type as 'button'. if you dont specify the button type, browser will set it to 'reset' or 'submit' witch cause to page reload.

返信を投稿

返信を投稿するにはログインしてください。