/    Sign up×
Community /Pin to ProfileBookmark

JS remembering clicks?

I’m trying to create a javascript function that calls a php page ajax style and unhides the table row that contains it. When the user hides the row again and then unhides it again after that, it would be awesome if the javascript already knew that it has been called and only shows the row instead of reloading it.

any ideas?

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@bathurst_guyFeb 10.2007 — just set a variable row1 = TRUE; /* already loaded */

then before doing the ajax request check to see if the variable is set

if(row1 == TRUE){

/*just unhide the row*/

}else{

/*complete ajax request*/

}

This is completely untested though
Copy linkTweet thisAlerts:
@scott212authorFeb 10.2007 — but the function won't remember the row1 variable next time, right?
Copy linkTweet thisAlerts:
@bathurst_guyFeb 10.2007 — Define next time.
×

Success!

Help @scott212 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 6.17,
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: @nearjob,
tipped: article
amount: 1000 SATS,

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

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...