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
Posted by Pankaj in Web development | 14,315 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 >