Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
was wondering if there is any way to have the functionality of converting a html page to pdf without the need to third party plugins. So in other words just using PHP, Javascript etc or a combination of web based languages.
Sorry to say this, but in this case a library probably is your best bet. It is possible to write one from scratch, but it's extremely time consuming, since you have to write a function, that renders the HTML/CSS to vector.
It depends on what you mean by 3rd party. If you want a native js or php function, then, no. There is no such thing. But if you want to use a library, there are a couple.
A quick google search turned up
http://parall.ax/products/jspdf
http://code.google.com/p/jspdf/
Generating PDF files with Javascript
http://www.fpdf.org/
http://phptopdf.com/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I bought a responsive admin panel template built with bootstrap. I have a question:
What is the best way of using tools to implement jquery calls to a webservice to update stats and the rest of functions on the page. I also used to it in notepad++ but I need more efficient tools for developing javascript and adding it to the .html files of the admin panel.
if you can pay for license then webstrom is best.
I am from java background therefore I use eclipse ide
The tool you use is your own choice. Some people will feel better on notepad++, other better with Sublime Text,...
You have to try them to make your own opinion and choose the one you feel most confortable with.
The code predictor you're talking about is called intellisense.
Take a look at this question. It seems to be quiet similar as your question : https://stackoverflow.com/questions/925219/best-javascript-editor-or-ide-with-intellisense-and-debugging-possibly
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a java Application which view few results in a web page , I want to save those results into PDF file which user click on a button "Export to PDF" Button. Can any one please help me to use which technology. I am really aware of this.
The simple and best way is to make use of existing libraries. You can get it done either in server side or in client side. If you choose the server side, go for iText PDF Api Otherwise you can use jspdf. Both will provide their own methods, you could use it.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I develop my site and want maximum performance with less code. How I can minify jQuery library throught remove additional functional? Not just minify this library.
Google Closure can do it? Alternatives?
Sorry for bad english!
Custom jQuery Builder - http://projects.jga.me/jquery-builder/
jQuery 2.0 - http://blog.jquery.com/2013/04/18/jquery-2-0-released/
Zepto.js - http://zeptojs.com/
Honestly, this list could go on and on, but it depends on whether you need full jQuery, what exactly your code requires, if you are using any plugins which rely on that code. It's really up to you to decide what can be removed and what can't
Removing functions in jQuery, even if you can does not give you additional performance. What you want is probably reduce the amount of bandwidth that the library will take by minifying it(well, you already know that don't you?) or loading it off a CDN. You may also want to take a look at zepto.js, a smaller and compact jquery compatible library.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to know if there's an existing Javascript library for validating HTML, preferably not one that relies on a web API.
The closest I've found to this is John Resig's HTML parser, but that seems to be more about fixing HTML and converting it to XML.
So is there something out there already? And if not, how difficult (and lengthy) would it be to adapt John Resig's parser?
No, there isn't one. However I am writing one: https://github.com/peterjwest/html_validator
You can't validate HTML with Javascript, because Javascript is loaded from within the HTML, which means the HTML is already rendered by the browser, which means all you can see with Javascript is the dom tree. The dom tree is built by the browser, but renders with and 'fixes' invalidations.
In short: What you need to validate HTML, is the HTML source. Javascript has access to the DOM, but not to the source.
edit
And immediately after posting, I'm thinking... You don't mean validating its own page =) You just want to validate a string with a javascript... So ignore this =)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
What I'm looking for is something similar to this ASP.net Ajax Control.
However, I need a solution that uses only free technologies (e.g. PHP, Javascript).
I like TinyMCE
Have you checked CKEditor (ex FCKEditor). This is one of the most powerful editors. But it depends what your end users are. If they're developers then consider something similar that SO uses (WMD Editor). Much easier and faster to use. SO guys actually changed it to some degree but the original was used at first.
Basically you don't need it to tie to any server-side technology as long as it's programmable on the client side.
Probably the most popular is the FCKeditor - now renamed CKeditor.