mmoustafa
-
How to create a circular progress bar with jquery ui?
The simplest application http://jsfiddle.net/CU7KM/ . You can change the value of the input through javascript dynamically to indicate progress.
-
How to create a circular progress bar with jquery ui?
Or the much simpler http://anthonyterrien.com/knob/
-
How to create a circular progress bar with jquery ui?
First thing comes to my mind http://widgets.better2web.com/loader/
-
Single Facebook Post in Wordpress from different Facebook Walls
I sent you an access token in a message, use it responsibly ;)
-
100% height of floated elements
change the body > #wrap to body > #wrap { height: 100%; box-sizing:border-box; padding-bottom:200px; } But take care, the box-sizing property is IE 8+ only.
-
Sticky nav menu links not working on iPad
On main.js line 73 change offset().top to offset.top
-
Setting a Div height to the window viewport size
With jQuery $(window).resize(function() { $('#my-div').css('height', window.innerHeight+'px'); });
-
Replacing each char in string with an asterisk.
console.log(Array(word.length+1).join("*"));
-
using jQuery: using versions 1.6.4 and 1.6.2 together in one html page
Nope, working on it http://mmoustafa.com give it a week or two. I am active on Codepen anyways.
-
Single Facebook Post in Wordpress from different Facebook Walls
Well you can just append graph. to the domain of the fan page. You can notice it outputs a JSON which has ID, that is the user_id, just copy it. But you still have to generate the access token, which is the annoying part.
-
using jQuery: using versions 1.6.4 and 1.6.2 together in one html page
You could add this < iframe style="width:100%; height:700px; overflow:hidden; background:#FFF;" src="http://www.kreebils.com/index-test-header-scroll.html"> instead of the h1 tag in (link 1) using chrome's develo…
-
no-show in responsive design
For the following reasons http://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/ . And when it comes to images, you need to check this out http://timkadlec.com/2012/04/media-query-asset-downloading-results/ . Plus you're load…
-
Single Facebook Post in Wordpress from different Facebook Walls
If you know a little PHP you could use http://itslennysfault.com/easiest-way-to-get-the-latest-status-from-facebook-fan-pages-in-php
-
Help modifing Equal Height Blocks in Rows javascript
Since you'll position the child element absolutely, you can add padding-bottom:30px; and position:relative; to the row parent elements.
-
using jQuery: using versions 1.6.4 and 1.6.2 together in one html page
You could put the mouse-parallax header (link 2) inside an iframe in the page with scroll working correctly (link 1). Where the iframe page runs jQuery 1.6.2 and the parent runs 1.6.4. Although it's a solution, It's really non-intuitive.…
-
Load a php page into a div
No problem, you're welcome. Please mark the discussion solved.
-
Load a php page into a div
Here is an example http://jsfiddle.net/L9ghH/22/ . Instead of using a .php file, I loaded one of jsfiddle's local CSS stylesheets (Don't tell them :D). Because .load() only works for files on the same server that are accessed locally, In o…
-
Load a php page into a div
Attach CDN hosted jQuery, put this in < head >. Add this at end of < body > tag. Make document load on click, placeholders below are self explanatory.
-
Multiline horizontal list
Yup!! I've looked it up alot, and as @Senff said, jQuery Masonry was the only option. Don't worry though, you don't need much JS knowledge to implement it.
-
Is using css to show a logo in place of h1 text against google rules?
Yes, it's really bad. Google just adopted a new algorithm. It's basically penalizing every over-SEO-optimized websites out there, the ones with hidden links & header tags and 100 lines of meta description. looks like your client has…