Let's see how it look like first. Is it good? Now, see it live. Click here . Then click the Forum Tab , wait 'til it loads. How to do it? Actually, it's very easy. 1. Just go to this site and sign-up. 2. Then go to your Blogger Dashboard > Edit Posts or New Posts > Edit Pages > Create New Page. 3. Name your page as Forum or anything you want. 4. Click Edit HTML 5. Paste the script that is given by tal.ki. The script looks like this. <script src='http://j9tjfgzo57.embed.tal.ki/embed/1.js' type='text/javascript'/><div id='j9tjfgzo57t4lk1prm0' style='font-size:80%; text-align:center;'>get your own <a href='http://tal.ki?utm_source=install&utm_medium=link&utm_campaign=get_your_own'>embeddable forum</a> with Talki</div> 6. Preview, if it's fine. Publish it! That's it!
Before we start this is the DEMO . You will be redirected to my another blog. LOL Just scroll down and click the SUBMIT A FILE!. Too much for the demo. Here's how to do it. 1. Go to this SITE . Sign up, don't complain it a very fast and an easy procedure. 2. After you sign-up, you need to log-in, of course. 3. Start adding form by clicking on the top-right 4. You will be given a 2 option, choose number 1. Add Form 1. Go to the Template section. I'd like to choose from a list of pre-made forms. 2. Take me to the Form Builder. I'd like to create my own form. 5. Start customizing, it's so easy. 6. Save the Form that you have created. After saving, go back to MY FORM. 7. You will be redirected here. Follow the instruction on the image. 8. The whole script is look like this. Just an example, use the code provided by the site. <script type="text/javascript"> function emf_open_window(url, height, width) { var leftPos = 0; v...
So to do that, you need a text file full of quotes. HAHAHA Separated by new line. DEMO $('#btn_modal').click(function () { var num = 0; $.ajax({ url: "https://dl.dropboxusercontent.com/u/75734877/taglines.txt", type: "GET", dataType: "text", beforeSend: function () { $('#kowts').show().html('<img src="http://www.feelol.com/Content/images/Loading.gif" />'); }, success: function (t) { var lines = t; var lineArr = lines.split('\n'); num = Math.floor(Math.random() * lineArr.length); $('#kowts').show().text(lineArr[num]); }, error: function(){ alert('Error') } }); }); Split the quotes from text file by "\n" (new line), then get its length and generate a random number between 0 to maximum length. Then use the generated number a...