uba
-
Another Sticky Footer That Always Shows
Oh so you mean a docked footer so to speak. Nice!
-
Another Sticky Footer That Always Shows
Hi, Of course there are a lot of ways of doing this here is one more it works with all of the major browsers and IE 6. http://www.cssstickyfooter.com/
-
jquery and google maps
Try using this jQuery plugin http://plugins.jquery.com/project/jmaps it should take care of the google maps for you.
-
jQ: slideToggle animation skips/jumps
have you tried increasing the animation time?
-
how to javascript on particular page not on all pages
You can do something like this just include it in your header. $pageUrl = $_SERVER['PHP_SELF']; $pageUrl = str_ireplace(\".php\", \"\", $pageUrl); switch ($pageUrl) { case \"page_name_1\": case \"page…
-
pop-up without javascript ?
The only other way to open a new window is to use “target="_blank"” in your links or with your forms. But if you want control over the new windows then you have to use JavaScript.
-
offline css validation
The only option to validate CSS in Dreamwaver is to validate them against different browsers it is not the same as the http://jigsaw.w3.org/css-validator/. If you want to try it just open your CSS file and click “Check Page” on your “Document Toolba…
-
php Redirection
You can try another way instead of redirecting from the client side you can redirect it from the server using: header(\"Location: page_name.html\"); exit;
-
Music player?
It is possible to have playlists in this player. Here is a link that will get you started. http://code.jeroenwijering.com/trac/wiki/FlashFormats
-
What editors do you use?
@ScottMacD I am using the 5.0.3 version and the code collapse is on by default but make sure that you have any language selected from the Languages menu that is other than Normal. @ikthius Well Notepad++ does not offer auto tag completion but it do…
-
Fade in / fade out
I am glad to be of any help, for jQuery all you need to do after including the main jQuery script file in you html is to write something similar to this: var $objTimer = \"\"; window.clearInterval($objTimer); $objTimer = window.setInterv…
-
Fade in / fade out
You can create an array in JavaScript with all of the one-liners that you want to show and then write a function that gives you a random number using “Math.random()†but make sure that it does not gives a number greater or smaller than your arra…
-
What editors do you use?
I use Notepad++, Visual Web Developer and Expression Web and all three of them offer the code collapse functionality you are looking for.
-
Music player?
I have used “JW FLV Media Player†in a number of projects and it’s very easy to setup and it supports both audio & video files. http://www.jeroenwijering.com/?item=JW_FLV_Player Although it comes with very good documentation if you need …
-
learning XML?
I think JavaScript will be most useful for you and after you have learned JavaScript XML will be a lot more useful to you then because you can use it with JavaScript for AJAX.
-
Is There a Better, Faster Way?
I code web sites manually myself mostly because I have complete control over every aspect of the web site. But it does take a bit more of my time so I try to use tools that help me code faster Notepad++ is a good code editor but offers not much hel…
-
learning XML?
You should certainly look in to learning XML. It is a bit similar to true XHTML and it can come in handy to know it one place or another like building RSS feeds, doing AJAX based development even a small one and even when working with flash.
-
Webdesigner or UI Designer
I don’t think that it is necessary but if you can at least understand how it works that will definitely help you in designing better user interface.
-
Better way to slice images in PHOTOSHOP
Another way that I use is to use the Photoshop’s Slice Tool and select the slices that I want to cut out then give them names and finely save them for web where I select the image format I want and then hit save. It saves all of the selected slice…