Posted by Pankaj in Web development | 335 views
Just tried Umbraco a dot net based open source system. following are some of my experience on that.
- I am totally new to dot net platform so i faced lots of problem to install Umbraco on shared server. After lots of research i found Umbraco is not compatible with networksolution and aplus.net shared hosting. Then i choosed Softsys. All thing set with softsys.
- Surprised to see a nice cms. take 3-4 days to try after that i am successfully deploy my first website in Umbraco.
- I found a beautiful way to manage the content from Umbraco.
As i am not very much familiar to More >
.net,
cms,
demo,
dom,
javascript,
jquery,
mc_ed_form,
Programming,
Umbraco,
Web development,
xhtml,
xml,
xslt
After 3 year of research on opensource cms i finaly decided use MODx for my all web need. I have done 2 website in Joomla, 4-5 website with typo3 and 4 WordPress blog. I was very satisfied with templating feature of typo3 specially there templovoila and tree structure of page view but when i use MODx for my first web website its amazing. following feature impress me very much.
- Fast and clean admin panel.
- As a SEO expert i need full control of of content. I found managing content through MODx is amazing.
- maxiGallary advanced gallery plugin.
- Better real url control.
- Generate cms output in More >
blogging,
cms,
javascript,
modx,
seo,
typo3,
w3c standard,
web designing,
wordpress,
xhtml,
xml
Posted by Pankaj in Web development | 14,316 views
I have given a code in my earlier post for jquery image rollover. Now here are the final code and guide how to use this code.
- you need to creative two image ie: one for normal state and one for active/rollover state. name it like imagename.gif and imagename_active.gif.
- put your image in your HTML document.
- put all your image in normal state. remember to keep the active state image in same folder.
- include jquery latest script from jquery website and include script on your head section.
- copy below code and paste after jquery include. (you can put this code in common include file and include after jquery More >
Posted by Pankaj in Web development | 324 views
if you need unobstructive JavaScript for image rollover you can use following code. I am not providing any detail markups for that if you face some problem to use that let me know. i will provide a demo section very soon for all of script.
1234567891011121314151617jQuery.
fn.
extend({
enter
: function() {
return this.
each(function() {
var pth
= $
(this).
find("img")[0];
if($
(this).
children().
attr("href")==document.
location.
href){
$
(pth
).
attr("src",pth.
src.
replace(/.gif/g, '_over.gif'));
} else{
$
(this).
hover(function(){
$
(pth
).
attr("src",pth.
src.
replace(/.gif/g, '_over.gif'));
},function(){
$
(pth
).
attr("src",pth.
src.
replace(/_over.gif/g, '.gif'));
});
More >