Archive for the 'jQuery' Category
Upload in Firefox 3
Recently i tried to use a swfupload pluggin, using php. I couldnt meke it work in Firefox 3. But in all other browsers worked like a charm. I couldnt stand the idea that this was the only time that firefox was the sticky browser. So I decided to test it in another computer with firefox [...]
Filed under: jQuery, javascript, php, tips, weird | Leave a Comment
Jquery and Swfobject conflicts
This is the right way to use swfobject and jquery framework. To avoid the known issues between these two.
<script type=“text/javascript”>
$(document).ready(function(){
var so = new SWFObject(“movie.swf”, ”mymovie”, ”400″, ”100%”, ”8″, ”#336699″);
so.addParam(“quality”, ”low”);
so.addParam(“wmode”, ”transparent”);
so.addParam(“salign”, ”t”);
so.write(“flashcontent”);
});
</script>
Filed under: flash, jQuery, javascript, tips, tweaks | Leave a Comment
jGrowl popup messages
jGrowl is a nicely developed pluggin, hopefully in a mature version 1.10(for now), for displaying messages like this in your browser
The style is similar to the way that OS X’s Growl Framework works.
Here u can download the pluggin
http://plugins.jquery.com/project/jgrowl
Filed under: jQuery | Leave a Comment
Some jQuery fans include the framework using this refference:
‘http://code.jquery.com/jquery-latest.pack.js’
Using this type of include you all need to know that the dimension pluggin is now included in the framework just after the 1.2.XXX Version.Performance Improvements and Dimensions Plugin Added to Core.
Filed under: jQuery | Leave a Comment