As you can see in IE, the text has no padding till the animation is finished. Must be something with IE not taking the styles correctly while being absolutely positioned.
Hi, First a big thank you to everyone on this list that helped me with the problems I had and of course a really big thank you to John Resig and everyone that helped him on jQuery! I started with this project three weeks ago to learn jQuery and for that I think it came out pretty well. (If you wonder why the tool is already indexing for half a year, it's because I've taken that part from on older php project I never finished) Here's the link to the tool, it's a feed aggregator with some unique features (especially the post button): http://www.osxcode.com/feedsearch/ The JavaScript is currently not optimized for speed or size, but I will work on that in the coming days, not that it's now slow or huge, but there sure is room for optimizations. ;-) Additional information about it can be found on my blog: http://www.osxcode.com/ Hope you like it. :-) Fredi -- View this message in context: http://www.nabble.com/My-first-jQuery-project-has-reached-open-beta%21-tf2747085.html#a7664253 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Hi, Have a look at this code: function showfeedinfos(feedid){ $.get("getfeedinfo.php", {feedid: feedid}, function(feedinfo) { $("#f_item_"+feedid+" .feedinfo").hide().html(feedinfo).slideDown("slow"); deblur(); }); } On every browser I've tested, this works without any problems, just in Safari not, it just doesen't show anything. It actualy reaches the inside of the function, but for some reason it doesn't fill the div with the loaded content (the variable feedinfo has the content as an alert test revealed). This is the html where the extra info is loaded into (I just removed the rest of the info that's in there): <div id="f_item_47"> ... <div class="feedinfo"></div> ... </div> It's from my first jQuery project: http://www.osxcode.com/feedsearch/ Funny thing is that if I change the id="f_item_47" part to class="f_item_47" and the jQuery part to a class as well, than it works in Safari, but with a very big lag, so not really a solution I want to use. Any ideas? Fredi -- View this message in context: http://www.nabble.com/How-can-this-not-work--%28Safari-Problem%29-tf2721195.html#a7588434 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Hi, I have some hidden information on my page that I readout with html(). The info info are HTML comments that look like this: <div class="redentry_dark" id="s_item_6"> <!-- 31352 6 --> <div id="overlight"> ... Now in Firefox html() takes the whole: <!-- 31352 6 --> <div id="overlight"> ... But in Safari it just takes: <div id="overlight"> ... So I can't readout the hidden information like that in Safari. Of course I could go and put that same info into a hidden div, but I'm wondering if there's another solution to this problem and maybe that's a bug of jQuery? Fredi -- View this message in context: http://www.nabble.com/Safari-problem-with-html%28%29-...-possible-bug--tf2704812.html#a7541981 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Hi, Ok, here's what I want to do. Let's say this is my html: <div id="item1"> <div class="title">Title 1</div> <div class="desc">Desc 1</div> <div class="msgfooter">Message Footer 1</div> </div> <div id="item2"> <div class="title">Title 2</div> <div class="desc">Desc 2</div> <div class="msgfooter">Message Footer 2</div> </div> ... And this is what I need in a variable: <h1>Title 1</h1>
Desc 1
<h1>Title 2</h1>
Desc 2
... What's the best way to do this? Without jQuery I would use regular expressions and lots of code, but something tells me that there's a simpler solution to this with jQuery. I tryd the filter function but I just can't get it to do what I want. Can someone help me out on this one? Fredi -- View this message in context: http://www.nabble.com/Problem-with-filtering-out-changing-specific-elements-tf2679820.html#a7474322 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Let's say I have a structure like this: <div id="container"> <div id="box1">box 1 content</div> <div id="box2">box 2 content</div> <div id="box3">box 3 content</div> <div id="box4">box 4 content</div> </div> Now how do I move one of those divs, lets say box3 to the top of the divs? The result should look like this: <div id="container"> <div id="box3">box 3 content</div> <div id="box1">box 1 content</div> <div id="box2">box 2 content</div> <div id="box4">box 4 content</div> </div> How can I do this? I'm new to jQuery, so maybe I've just missed something, but currently I just can't figure that one out. Fredi -- View this message in context: http://www.nabble.com/Move-element-to-top-of-outside-element%2C-how--tf2657866.html#a7413815 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/