No.
The primary goal of Stack Overflow is to build an archive of questions and answers that are useful to people and situations beyond that of the original asker. A question with just a link to code subverts this goal in two ways:
It will nearly always be too localized: the problem exists only on one page, at one point in time. It's unlikely anyone else will write the exact same code (even if they encounter the same underlying problem), and once a solution is devised and the page fixed, the link won't even serve to demonstrate the problem.
Without the link, it isn't even a real question: Let's say you get a great answer to your question. How is anyone else with the same underlying problem going to find it? Unless you understood the problem well enough to describe it in detail, there's only a rough description and no code. How many questions with the same description do I have to wade through before I can find the one that actually matches my own problem?
"Not a real question" and "Too localized" are both valid reasons to close such a question on Stack Overflow.
What you should do instead
Debug it! Narrow down the problem, to where you can describe it with a useful, searchable title and a small bit of code. Don't just dump your entire page into the question - figure out which portion actually causes the problem, and include just enough code to reproduce it. Don't know how to do this? Ask!
Then include a link to a live demonstration of the problem. Don't link to your actual website - use tools like JS Bin or jsFiddle to create a stand-alone illustration of the problem based on the code you've already included in your question. This can be a great bonus for the folks trying to recreate and solve your problem - but shouldn't be the only description of your problem. If jsbin goes away, your question and its answers should still make sense. If you're using a similar service, try to include the code to reproduce the problem in your post as well.
Debugging tips
Before you try to debug CSS or JavaScript, make sure your HTML source is valid. "Broken" HTML is one of the most common causes of rendering and other errors, and different browsers will handle invalid HTML in different ways. Validating your HTML can reveal serious errors, like mismatched tags or duplicate id attributes. While not all errors are crucial to rendering (missing alt attributes for example), you should still fix as many of them as possible before debugging other code.
Validation tools
Debugging tools
A tutorial about how to use such tools: JavaScript debugging for beginners.
See also
http://tinyurl.com/so-debug. – Lightness Races in Orbit Mar 20 '12 at 18:03