[Solved] Notepad v.s. other platforms [closed]

I like using Sublime text. It’s very lightweight and extemely versatile :). You can install alot of free very creative plugins to help you coding too including some SVN plugins. To share your code another way i guess you could use something like github or tortoise SVN too. To work on thesame file online i … Read more

[Solved] Securely send form data instead of using post [closed]

This is not really a good question, but you still might look at the following links: http://php.net/manual/en/tutorial.forms.php http://www.php.net/manual/en/features.file-upload.post-method.php http://code.google.com/a/apache-extras.org/p/phpmailer/ 0 solved Securely send form data instead of using post [closed]

[Solved] how can i extract text and image in PDF file using php or javascript [closed]

Check this out http://www.techumber.com/2015/04/html-to-pdf-conversion-using-javascript.html Basically you need to use html2canvas and jspdf to make it work. First you will convert your dom to image and then you will use jspdf to create pdf with the images. EDIT: A short note on how it work. We will use two libraries to make this job done. http://html2canvas.hertzen.com/ … Read more

[Solved] HTML checkboxes and input options [closed]

If you want to create inputs on the fly you can use the following: $(“.myCheckbox”).on(“change”, function() { var value = $(this).val(); if (this.checked) { $(this).parent().append(‘<input id=”checkboxInput’+value+'” type=”text” maxlength=”254″ name=”checkboxInput’+value+'”>’); } else { $(‘#checkboxInput’+value).remove(); } }); <script src=”https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js”></script> <div class=”container”> <div class=”checkboxWrapper”> <input class=”myCheckbox” id=”checkbox1″ type=”checkbox” name=”someName[]” value=”1″ /> <label for=”checkbox1″>Value 1</label> </div> <div class=”checkboxWrapper”> <input … Read more

[Solved] Display an alert visible if the user is using the web or not

Based on the link you’ve shared, if you want a popup over any desktop application through the browser, use the W3C Notification API. For example window.onload = function () { if (Notification.permission !== “granted”) Notification.requestPermission(); }; function notifyMe() { if (!Notification) { alert(‘Desktop notifications not available in your browser. Try Chromium.’); return; } if (Notification.permission … Read more