3
votes
1answer
38 views

I'm trying to understand an optimization for improving minification in JavaScript

While digging into the uniform.js source code I found this (on line #333): /** * Meaningless utility function. Used mostly for improving minification. * * @return false */ function returnFalse() { ...
1
vote
1answer
111 views

Using ASP.NET Javascript Bundles from the controller

I realise this breaks the MVC pattern, but there is a viable reason for doing it this way in an application I am currently building :) What I am trying to do is output a JavaScript bundle directly ...
4
votes
2answers
188 views

MVC4 Bundling Strategy

I'm using the new Bundling feature in ASP.NET MVC4. Currently I have the following bundles configured: ~/js/jquery ~/js/forms ˜/js/bootstrap Depending on the view I'm serving I usually call a ...
0
votes
1answer
102 views

How to utilize a js minimization for a web site of a big organization

I am looking for a JS minimization (maybe CSS as well) tool to use in our website. The site is fairly big and we cant manually minify files individually. We are also planning to use Long term caching ...
0
votes
1answer
103 views

Minify JavaScript with JavaScript?

Since I've heard people whining how PHP can't handle it, how about minifying JavaScript with JavaScript itself? I want something that I can just copy and paste and use right away--my JS file is about ...
0
votes
1answer
135 views

Is there a way to load javascript files into one file to the page to optimize the site speed?

I'm currently developing a website. Every feature works fine. However, I'm using a lot of tools to help my site more usable which provide more loads of javascript and css files so that my site ...
2
votes
3answers
378 views

remove redundant css rules from dynamic website

I'm trying to reduce the size of my CSS file. It is from a template which is very CSS & JS heavy. Even with CSSMin the CSS file size is 250kb. Whilst I use alot of the CSS - I know I dont use it ...
8
votes
2answers
5k views

Runtime bundling and minifying in MVC 4

I was wondering if anybody can help me with bundling and minifying using the new optimization namespace shipped with MVC 4. I have a Multitenant-application in which I want to decide which js files ...
2
votes
1answer
137 views

Is there a performance benefit to sorting CSS properties?

I am designing a little minifier for stylesheets, and I am curious if there is any need for me to sort the properties of each selector into a specific order that increases performance, or if it really ...
0
votes
2answers
54 views

How to minify jQuery selectors?

I'm wondering how to minify jQuery selectors: $("#foo_1").show(); $("#foo_2").show(); $("#foo_3").show(); $("#foo_4").show(); $("#foo_5").show(); Thanks in advance!
0
votes
1answer
208 views

reduce CSS rules to their lowest common denominator

I have a templating engine in PHP wich allows you to set style attributes to objects prior to rendering. During development time, I want these attributes to be inline so I can find them and change ...
4
votes
2answers
196 views

How do you minify and/or compress JavaScript that is in a php file?

I am looking at optimization options, and after checking SO questions, I don't quite see an answer for what I am trying to do. Hopefully that doesn't indicate that what I am doing is a bad practice! ...
1
vote
3answers
218 views

Should I minify javascript in userscripts for Greasemonkey or Chrome extensions?

Is it worthwhile to minify a script that goes into an extension or userscript for Greasemonkey? I ask because the user will just be downloading it once and running it many times (it's not part of the ...
5
votes
8answers
14k views

how to Minify JS / CSS on the fly / runtime

how to Minify JS / CSS on the fly / runtime. so that i can keep the original code structure in my servers if its minified on the runtime / fly.
4
votes
3answers
1k views

Combine Javascript/CSS into one file or two for better optimization

I am currently working on an c# application that minimizes and combines javascript/css asynchronously in the background to load on to the page which completed. Once the combined minimized file(s) are ...
0
votes
1answer
70 views

Jquery custom core : use just what you need

As you may have guessed, i'm trying to speed up page loading on my website. So since I Don't use most of jquery's functions, I thought that I could use a "lighter" version. Is there an easy way to get ...
2
votes
3answers
7k views

Minify HTML/PHP

I'm using gzip to compress my html/php files along with js/css/etc. This reduces the payload quite nicely but I also want to 'minify' my markup of both .html and .php pages. Ideally I'd like to ...
1
vote
2answers
742 views

Most flexible minimizer/compressor for ASP.NET MVC 2?

From your experience, what's the most flexible minimizer/compressor (JS+CSS) for ASP.NET MVC you've dealt with? So far mbcompress doesn't seem to be too MVC friendly weboptimizer.codeplex.com lacks ...
13
votes
6answers
2k views

Why do many sites minify CSS and JavaScript but not HTML? [duplicate]

Possible Duplicate: Why minify assets and not the markup? I have seen a lot of sites using minified CSS and JavaScript to increase website response time but I have never seen any sites use ...
1
vote
1answer
151 views

Speeding up FCKEditor

Does anyone have a technique for speeding up the FCKEditor? Are there some key JavaScript files that can be minified or removed?
6
votes
2answers
2k views

What's the best way to minify the ASP.NET generated Javascript?

What's the best way to minify the ASP.NET generated Javascript, such as the ones served by webresource.axd, in ASP.NET 3.5 at runtime? I tried using the MbCompression module but it's not working with ...
20
votes
2answers
8k views

Minify Html output of ASP.NET Application

What are the ways by which we can reduce the size of the HTML Response sent by an asp.net application? I am using Controls which are not owned by me and it produces output with white spaces. I am ...