How to pass parameter in url? pl. explain with example?

Use sessionStorage to store form status // initial status – FALSE sessionStorage.formStatus=”false”; // use this code on button click event sessionStorage.formStatus=”true”; // check form status and render if (sessionStorage.formStatus === ‘false’) { // render form } if (sessionStorage.formStatus === ‘true’) { // render thank you text }

How To Display Images Preview and Title When I Paste in Another Site Like Facebook, Whatsapp, etc

Your site isn’t using meta tags. which is basically looks like this. <meta property=”og:title” content=”Title”> <meta property=”og:description” content=”Description”> <meta property=”og:image” content=”http://example.com/thumbnail.jpg”> <meta property=”og:url” content=”http://example.com/index.htm”> Google about meta for learn in details and how to use.

URL Redirect / URL Masking [closed]

Try creating .htaccess and putting the following in it: <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^ICEEC$ viewjc.php?id=c5 [L] RewriteRule ^ICEEC/$ viewjc.php?id=c5 [L] </IfModule> Make sure that the viewjc.php is at the same directory as your .htaccess If you’re just trying to change URL address bar when someone visits particular page of your website, add this to … Read more

How can I read the contents of a webpage, not the source code of that page? [duplicate]

but you do want to read the contents of the source code, as it contains the content your looking for.. <span id=”result_box” class=”short_text” lang=”bn”><span class=”hps”>আমি</span></span> this is the node that contains the content of the translation…if you can build the url containing the un translated string, capture the response to that url and then find … Read more