Hugo
-
jQuery opacity help
Why not give the descriptions a CSS class that makes them invisible immediately? As far as I know CSS comes before Javascript.. So try using visibility: hidden
-
Which plugin will do this?
Can't find the IPlayer you mentioned!
-
Remove event when clicked?
Not sure what event you're using, but it's worth noticing the hover event is kind of special when using unbind()... In that very occasion you can't just use $('#selector').unbind('hover'), but you'll have to u…
-
Obfuscating e-mail addresses [anti-SPAM]
"mvaughn" said:Chris, I'm a hack when it comes to PHP. I understand what's going on with the code here but can you explain "sanitize the shit out of those variables" please? thx -Michael The PHP code from above takes …
-
website cost
Make a realistic estimate on how many hours you will be spending on it, then calculate the total price using your own hourly rate.
-
jQuery Append and then remove
How's this: $(function() { $(\"form#explore input:checkbox\").change(function(e) { var title = $(this).attr(\"title\"); if($(this).attr('checked')) { $(\"#searc…
-
JavaScript animated scroll down
Okay. There's this plugin called scrollTo, it's a jQuery plugin. See the demo and the project page for more info, I think that's what you're looking for.
-
jQuery : Wait till image load before applying function : How
@chriscoyier: this makes the code 'wait' until the entire page is loaded. I think this is more specific: $('#someImageID') .load( function(){ //Do stuff once the image specified above is loaded …
-
Mouseover/ Linking issue
@asp: "alliwagner" said:(...) I work for a company which only uses mootools so jquery solutions won't work. @alliwagner: I hope someone can help you here because (as you implied) there's a lot of jQuery people here.
-
jquery/ajax dynamic loading
Firebug reports an error when I enter the page: loadContent is not defined onload(load) [Break on this error] loadContent(1); Have a look at that first. So if I get this straight (correct me if I'm wrong here), everytime you click a menu item …
-
JavaScript animated scroll down
This was most probably done using some javascript library, such as jQuery, Mootools or Prototype. Are you familiar with any of them? Cause that would certainly help.. If not: try to look for some snippets on sites like dynamicdrive.com , they are …
-
Cross-browser testing
Yeah download them. I have right here: Mozilla Firefox 3.0.11 Microsoft Internet Explorer 5.5, 6, 7 (IETester) Microsoft Internet Explorer 8 Apple Safari 4 Google Chrome Opera 9.64 If you don't want to install those browsers there's this …
-
Google, YouTube etc live search. How?
Yes they certainly do cache certain combinations, depending on your language. They also have an entire database containing a lot of possible typo's for each word, so they autosuggest stuff even when you've spelled it wrong. This indeed cos…
-
Google, YouTube etc live search. How?
I think he means the 'AutoComplete', those are the suggestions that pop up right under the input field. The way google (and other websites) do this is by using AJAX - every time you press a key (hence: typed a letter) while focused on the…
-
Problem with Validating and Ajax Submission
So the problem here is the e-mail not going out? Could you post some PHP?
-
Retrieve & display image from database - using AJAX[POST]
YEa I've seen that one. But they use this workaround with the iframe. Might just use that eventually cause there doesn't seem to be a non-iframe solution. Thanks a bunch for your help.
-
Retrieve & display image from database - using AJAX[POST]
Hi Dave, Thanks for your reply. I am actually using that $_GET thingie right now, but I might just use your hash idea. It's kind of a long story why I want this through $_POST, I''ll save you that. Was just wondering if I missed out …
-
Web Site Design Tips?
1280x900 is a very popular laptop resolution....
-
How to display page content after javascript finishes.
Isn't this the same idea as the 'loading page' topic earlier this month? Like some sort of HTML/CSS-absolute positioned overlay to be displayed first, and eventually removing it with javascript (which will be the very last action java…
-
Problems on webkit browsers
That must be because of Dreamweaver, when creating a new CSS file it automatically fills the first line with that charset thing. But what does it actually do? And why the @? Doesnt that mean that the output after the @ is ignored?
-
jquery or mootools
"akeenlabs" said:if you're just looking for the DOM manipulation stuff, this won't matter, but after a while you'll give in to the flashy effects :) :D Same here. I used to build a lot of DOM manipulation stuff 'by han…
-
javascript problem
You can use the built-in callback function to achieve this. Animate takes a total of four arguments: animate( params, [duration], [easing], [callback] ). The most popular are the first two, 'params' and 'duration' (you've us…
-
jquery or mootools
Same here. I've been using jQuery for quite some time now, and for me there hasn't been a reason yet to switch framework - I guess that's a positive something :) You might also want to have a look at this link: http://blog.creonfx.c…
-
#hashes and urls
"James" said:Don't forget about the back button! Ajax is great for speeding up and enhancing websites but using it for main site navigation is a very big task; history management is an integral part of such a thing. You can't jus…
-
png hack problem
Sorry for my post spam.. But I found a very interesting article on this very PNG transparency thing: http://24ways.org/2007/supersleight-tra ... png-in-ie6 It explains a lot about the alpha channel that is not being recognized in IE5.5 and IE6, as w…
-
png hack problem
"brrutzo" said:(...) I loaded the UnitPng fix a few days ago. Worked very well. Today I added the jQuery UI datepicker. It too worked very well in FF. However, when I used IE6(only version of IE I have on PC for testing), the date pic…
-
png hack problem
"hoss9009" said:Anyone have any suggestions? The unitpng fix webpage reports it is interfering with background-position CSS properties. Please bear in mind, it's still a hack/workaround and this is never a 'neat' solution. U…