/    Sign up×
Community /Pin to ProfileBookmark

Reloading the page with javascript

Hello,

This code is “window.location.reload (true);” Reloads the page, but loads without those after .php

Source URL
https://xxxxx.com/page.php?xxx=12&xxx=xxxx

Reload URL
https://xxxxx.com/page.php

How to do this with self?

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@daveyerwinJul 14.2020 — <form>

<input name=test>

<button>Sub</button>

</form>

<input type=button value=reload onclick=reload()>

<script>

function reload(){window.location.reload (true)}

</script>

I don't experience what you described with

the above code

maybe the situation

must be addressed in you php code ?
Copy linkTweet thisAlerts:
@Oz_lopingJul 14.2020 — You can save the search query (after .php) in cookie before reloading the page.

function setCookie(key, value, expiry) {
var expires = new Date();
expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000));
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
}

function getCookie(key) {
var keyValue = document.cookie.match('(^|;) ?' + key + '=([^;]*)(;|$)');
return keyValue ? keyValue[2] : null;
}

setCookie('siteSearchParams', window.location.search, 30);
window.location.reload();

then after that you can use cookie value to set to search query:

window.location.search = getCookie('siteSearchParams');
**code from:**

[stackoverflow.com](https://stackoverflow.com/a/18652401)

Copy linkTweet thisAlerts:
@VITSUSAJul 15.2020 — I agree with Oz_loping, I hope you must have got the solution to this problem.
×

Success!

Help @gecekule spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.10,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...