Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0

11 Posted Topics

Member Avatar for peepster

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?

Member Avatar for dantinkakkar
0
122
Member Avatar for Danny159
Member Avatar for Danny159
0
159
Member Avatar for 3825

Each image could be an <li> within a <ul> and you can set the CSS "display" property to "inline-block"

Member Avatar for epicrevolt
0
188
Member Avatar for shredder2794

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 …

Member Avatar for mi.mac.rules
0
102
Member Avatar for Punny

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 …

Member Avatar for Airshow
0
109
Member Avatar for welkam

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 …

Member Avatar for mi.mac.rules
0
162
Member Avatar for ganesh641

[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]

Member Avatar for mi.mac.rules
0
149
Member Avatar for mi.mac.rules

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.

Member Avatar for madihaghafoor
0
884
Member Avatar for mi.mac.rules

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 …

Member Avatar for mi.mac.rules
1
1K
Member Avatar for mi.mac.rules

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 …

Member Avatar for mi.mac.rules
0
241
Member Avatar for mi.mac.rules

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 …

Member Avatar for mi.mac.rules
0
2K

The End.