- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
11 Posted Topics
Re: Can you clarify your question? Are you saying that you'd like the image change in the center to be more of a fade instead of the instant change? | |
Re: Try adding [CODE]event.preventDefault();[/CODE] in your click() function | |
Re: Each image could be an <li> within a <ul> and you can set the CSS "display" property to "inline-block" | |
Re: IE sucks for HTML5 and CSS3 (comply to the standards, M$). For the HTML5 problem, try this: [CODE]<head> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> ... </head>[/CODE] for CSS3, there are hacks out there, but they're only hacks until M$ complies with the standards. You can create a less responsive … | |
Re: If you want to interact with the page, use an [URL="http://www.w3schools.com/tags/tag_iframe.asp"]iframe[/URL] If you want just a preview of it, use an ajax [URL="http://api.jquery.com/load/"]load[/URL] and if you want a scaled preview that you can't click on, use images - ajax load will actually load the DOM elements of the body of … | |
Re: I agree with jstfsklh211, but event.preventDefault() has always crashed my javascript in IE. So if you're worried about IE, I would do this: [CODE] $("a").click(function(event){ if(!$.browser.msie) { // if you're not in IE, do this event.preventDefault(); } $.get( "search.php", { query: "intel" }, function(data) { $('#content').html(data); } ); }); <a … | |
Re: [QUOTE=ganesh641;1758595]Simple code for creating Password Strength program using JQuery Functionality in a Registration Form[/QUOTE] A couple I found: [url]http://www.visual-blast.com/javascript/password-strength-checker/[/url] [url]http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/[/url] [url]http://benjaminsterling.com/?p=117[/url] | |
I'm trying to startup my Ubuntu Apache install and there's a problem loading LDAP modules that I can't seem to resolve: [QUOTE]httpd: Syntax error on line 65 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2.2/modules/mod_authnz_ldap.so into server: /usr/local/apache2.2/modules/mod_authnz_ldap.so: undefined symbol: apr_ldap_url_parse [/QUOTE] Any help would be appreciated, thanks. | |
All, I am trying to install CAS on an Ubuntu Server and the only problem seems to be installing Apache Modules. I am setting this up to be (almost) exactly like a Solaris server we have currently up and running, but I can't seem to figure out how to install … | |
I'm making a program to add/sub/mult numbers from bin/oct/dec/hex format and output in whatever base the user asks, run syntax: [CODE]./instruction <num1> <num2> <base1> <base2> <output base>[/CODE] and, besides the stupid implicit declaration warnings I get for some unknown reason (I'd love to know why), when I run this (I'm … | |
I go to Rutgers, NB, and I'm taking a class that requires the use of C without teaching us much of C, so sorry if I'm a bit uneducated. My first question is, when using fgets(), how do I get the [B]next[/B] line? I have [CODE]while((fgets(line,MAX,file)) != NULL){[/CODE] to get … |
The End.