google chrome

remove “confirm form resubmission” with Google Chrome

so, do you get the annoying “confirm form resubmission” page when a user hits the back button or refresh using google chrome? simply change your form method from “post” to “get”. if you can put all your values in the url use the “get” method instead of “post” //remove post <form action=”index.php?load=SEARCH” method=”post”> //use get…

Read More...

JQUERY issues with Google Chrome .ajax() doesn’t load

For the life of me I couldn’t figure out why my JQuery .ajax() call wouldn’t load in Google Chrome. Especially when it worked in Firefox, IE and Safari which I thought is based on the same WebKit browser. Anyhow, I found the issue to be in the data format AND having null vars. $.ajax({ type:…

Read More...