User Ionut Staicu - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T22:37:37Zhttp://stackoverflow.com/feeds/user/23810http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250984/do-i-really-need-version-control17Do I really need version control?Ionut Staicu2008-10-30T17:14:43Z2009-11-18T05:44:08Z
<p>Hi.
I read all over the internet (various sites and blogs) about version control. How great it is and how all developer NEED to use it because is a god bless.</p>
<p>Here is the question: do I really need this? I'm a front end developer (usually just html/css/javascript) and I NEVER had a problem like "OMG, my files from yesterday!"
I've tried to use it, installed svn and tortoise, I understand the concept behind VC but... I can't use it (weird for me).</p>
<p>Ok, so... That's bad? I usually work alone (freelancer) and I had no client that asked me to use svn (but never is too late for this, right?). So, should I start and struggle to learn to use svn (or something similar?) Or it's just a waste of time?</p>
<p>Thanks!</p>
<p><hr /></p>
<p>Related question: <a href="http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control#132522">Good excuses NOT to use version control</a></p>
http://stackoverflow.com/questions/1375802/how-do-i-process-proxy-digg-json-for-use-with-jquery/1375906#13759060Answer by Ionut Staicu for How do I process Proxy Digg JSON for use with jQuery?Ionut Staicu2009-09-03T20:55:53Z2009-09-03T20:55:53Z<p>Did you tried </p>
<pre><code>$.getJSON('url', function(data){
//do smth with data
})
</code></pre>
<p>?</p>
<p>After the request is complete, <code>data</code> will be an object with all JSON response and you can access it as regular js object: <code>data.something</code> and so on.</p>
http://stackoverflow.com/questions/1330823/what-is-the-most-performant-way-to-inject-new-code-into-the-dom1What is the most performant way to inject new code into the DOM?Ionut Staicu2009-08-25T20:35:45Z2009-08-25T21:31:43Z
<p>Hi.</p>
<p>I am engaged in a small debate with the server side developer for my project (I'm the front end guy) around injecting new stuff into DOM. He maintains that the best method to inject a large amount of code (received via ajax) is to send a JSON object and then to iterate through each item of that object. He says that will save some bandwidth and is more server friendly.</p>
<p>Obviously (for me, at least :-) ), this mean a LOT of cpu cycles on client. </p>
<p>The data is basically a table with 20-30 rows (2-3 cols each), which means few (useless) iterations.</p>
<p>On the other hand, I think that the best method is to send pure XHTML (server generated source) and just inject it in place. This means just one cpu cycle (<code>$('selector').html(data)</code> where <code>data</code> is the data received with AJAX, but also means a lot of bloated HTML code. </p>
<p>I use jQuery (but I think that is not too important). </p>
<p>So, what do you think, guys? Thanks!</p>
http://stackoverflow.com/questions/1317718/jquery-hover-and-nested-lists/1318937#13189370Answer by Ionut Staicu for jquery hover and nested lists.Ionut Staicu2009-08-23T16:24:24Z2009-08-23T16:24:24Z<p>I always used this kind of code:</p>
<pre><code>$('tr').hover(function(){ // replace tr with ANY tag you want.
$(this).addClass('hover');
}, function(){
$(this).removeClass('hover');
});
</code></pre>
<p>If you want to add hover on more than once item, you can use an array selector:</p>
<pre><code>$('tr, div, span').hover....
</code></pre>
<p>Of course, in css, you can do this:</p>
<p>1) use a separate stylesheet for IE6 (and bind this hover function ONLY for IE6)</p>
<p>2) use .hover (instead of :hover) anywhere you need it. However, you should consider that you may have some performance leaks if you do this way.</p>
<p>instead of:</p>
<pre><code>tr:hover td {background:red}
</code></pre>
<p>you will have:</p>
<pre><code>tr.hover td,
tr:hover td {background:red}
</code></pre>
http://stackoverflow.com/questions/1318829/unbind-a-div-and-then-bind-it-later/1318927#13189270Answer by Ionut Staicu for Unbind a div and then bind it later.Ionut Staicu2009-08-23T16:17:32Z2009-08-23T16:17:32Z<p>also, you can try to use this kind of syntax (which should be faster and more memory&cpu friendly):</p>
<pre><code>$('.tab').click(function(){
var t=$(this);
if(t.hasClass('active')){return false;}
$('.active').removeClass('active');
t.addClass('active');
/* do some stuff here */
return false;
});
</code></pre>
<p>Or even better, to avoid repeating yourself:</p>
<pre><code>$('.tab').click(function(){
var t=$(this);
if(!t.hasClass('active')){
$('.active').removeClass('active');
t.addClass('active');
/* do some stuff here */
}
return false;
});
</code></pre>
<p>Why is this faster & cpu friendly? Because you bind this only once. When you use <code>live</code> bind method, the browser will listen for any change in the DOM.</p>
http://stackoverflow.com/questions/339956/whats-the-best-ui-for-entering-date-of-birth7What's the best UI for entering date of birth?Ionut Staicu2008-12-04T09:03:15Z2009-08-21T15:43:24Z
<p>What is the best method for date of birth selector?</p>
<ul>
<li>3 text inputs (month / day / year) or one mask input. User MUST use keyboard</li>
<li>3 select boxes. User can use keyboard or mouse. </li>
<li>One nice <a href="http://ui.jquery.com/repository/tags/latest/demos/functional/#ui.datepicker" rel="nofollow">datepicker</a>.</li>
</ul>
<p>I want to know what is the most usable and problem free solution, so user wont be confused at all.</p>
http://stackoverflow.com/questions/1270874/settimeout-inside-each/1270904#1270904-1Answer by Ionut Staicu for setTimeout inside $.each() Ionut Staicu2009-08-13T09:08:24Z2009-08-13T09:08:24Z<p>Try with <code>window.setTimeout</code>.</p>
http://stackoverflow.com/questions/1157969/how-to-name-your-programming-blog/1157982#11579821Answer by Ionut Staicu for How to name your programming blog?Ionut Staicu2009-07-21T08:41:27Z2009-07-21T08:41:27Z<p>Sexy young chicks? :D</p>
http://stackoverflow.com/questions/1153241/send-a-jquery-callback-function-inside-a-variable/1153272#11532721Answer by Ionut Staicu for send a jquery callback function inside a variableIonut Staicu2009-07-20T12:22:11Z2009-07-20T12:22:11Z<p>well.. You do this way:</p>
<pre><code>function example(file, targetwidget, callback){
$(targetwidget).load(file, {limit: 25}, function(){
if(typeof(callback)==='function'){
callback.call(this, 'other parameters');
}
});
</code></pre>
<p>The paramenters of callback will help you to send data back to callback function. ATTENTION, don't forget the <code>this</code> keyword!</p>
http://stackoverflow.com/questions/1151031/divs-smashing-into-each-other/1151070#11510700Answer by Ionut Staicu for Divs smashing into each otherIonut Staicu2009-07-19T22:36:00Z2009-07-19T22:36:00Z<p>Well.. You kinda doing wrong. The best approach for this I think is this:</p>
<pre><code>// header //
<div class="clearfix wrapper">
<div class="sidebar"> your sidebar </div>
<div class="mainContent"> your content </div>
</div><!--/.wrapper-->
//footer //
</code></pre>
<p>Of course, don't you forget the doctype and all header stuff :)</p>
<p>From CSS part, you do this way:</p>
<p>First of all, use a css reset. <a href="http://dev.iamntz.com/13/best-practices-and-advices" rel="nofollow">You can use mine</a> because also include the <code>clearfix</code> hack. Then, you do this way:</p>
<pre><code>.sidebar { width:200px; float:left; } /* change with your width */
.mainContent { margin-left:200px; } /* also, change with sidebar width */
</code></pre>
<p>And... That's all. I also made some kind of tutorial like ages ago on how to make a simple layout. You can read it <a href="http://dev.iamntz.com/15/2-column-layout-basic-and-advanced" rel="nofollow">here</a> (ignore the all non semantic ID's :-) )</p>
http://stackoverflow.com/questions/1149747/jquery-click-function-not-working-for-me/1149758#11497580Answer by Ionut Staicu for [jquery] .click function not working for meIonut Staicu2009-07-19T12:05:22Z2009-07-19T12:05:22Z<p>1) just before the last <code> });</code> you should add <code>return false</code>;</p>
<p>2) Are you sure that <code>#delete</code> exists? Also, are you sure is UNIQUE?</p>
http://stackoverflow.com/questions/1145954/how-do-you-select-more-than-one-element-by-id/1145975#11459754Answer by Ionut Staicu for How do you select more than one element by id?Ionut Staicu2009-07-17T22:34:30Z2009-07-17T22:34:30Z<p>You can use</p>
<pre><code>$('#element1, #element2').click();
</code></pre>
<p>Or</p>
<pre><code>$('#element1').add('#element2').click();
</code></pre>
<p>Both methods are good</p>
http://stackoverflow.com/questions/1145922/nested-forms-design-question/1145965#11459650Answer by Ionut Staicu for nested forms (design question)Ionut Staicu2009-07-17T22:31:51Z2009-07-17T22:31:51Z<p>You can't have nested forms... In fact, if you try to validate, you will have a big and ugly html error.</p>
<p>The solution on your problem I think is this: when you make the ajax request and you return the edit form, you can inject the code at the end of your html and display it into a modal window (i did this way on a project few months ago).</p>
<p>However, i don't know how RoR works so it's just an idea :P</p>
http://stackoverflow.com/questions/1143955/how-do-i-change-the-function-in-jquery-for-another-word-for-make-it-compatible/1143989#11439890Answer by Ionut Staicu for How do I change the $ function in jquery for another word for make it compatible with other framworksIonut Staicu2009-07-17T15:25:09Z2009-07-17T15:25:09Z<p>or you can use closure, this way:</p>
<pre><code>jQuery(document).ready(function($){
$('div') //use regular $
})
</code></pre>
<p>However... WHY? Why do you want to load more than once library?</p>
http://stackoverflow.com/questions/1143194/handle-browser-close-in-javascript/1143222#11432224Answer by Ionut Staicu for Handle Browser close in Javascript?Ionut Staicu2009-07-17T13:21:04Z2009-07-17T13:21:04Z<p>No. You only have <code>onbeforeunload</code> event, available as raw javascript (jquery doesn't include this event).</p>
<p>If you want to try it, try to post here an answer and, without pressing "post your answer" try to close the browser window.</p>
<p>This is the closest way to access the "close window" event.</p>
http://stackoverflow.com/questions/1093882/event-bubbling-jquery-tabs/1094106#10941060Answer by Ionut Staicu for Event Bubbling jQuery + TabsIonut Staicu2009-07-07T18:48:35Z2009-07-07T18:48:35Z<p>You can try to use <code>onShow</code> callback and initialize lightbox and other scripts after the tab is shown.</p>
http://stackoverflow.com/questions/906104/sortable-similar-with-youtube-homepage0Sortable similar with youtube homepageIonut Staicu2009-05-25T09:53:04Z2009-05-26T07:37:45Z
<p>Hi guys!</p>
<p>I'm trying to achieve an effect similar with youtube home page (you must be logged in so <a href="http://screencast.com/t/G3plNO2Qtdq" rel="nofollow">I posted a small movie to explain this</a>): we have a basic sortable (vertical only) but on each sortable item we have a "move up" and a "move down" button. Those buttons do... exactly what it says: move each item with a neat animation move or down.</p>
<p>So, I'm thinking that works very similar with sortable: it makes a helper (that is the animated element) then, after the animation is complete, the DOM is altered with new positions. </p>
<p>So, any idea is welcome!</p>
<p><hr /></p>
<p>I made a small test in firebug. I can clone the element with this:</p>
<pre><code>$('.hslider:first').clone(true).insertAfter('.hslider:first')
</code></pre>
<p>But the main problem is that I have some JS binded on elements inside of <code>.hslider</code>. Even that some keep works, other (like jquery UI slider) don't. There is a way doing this without reinitialize the whole js? I tried to take a look at jquery UI source but... I'm not THAT good on js/jquery to be able to decode anything useful (yes, the source was uncompressed :P )</p>
<p><hr /></p>
<p>Edit:</p>
<p>I found something similar <a href="http://www.brothercake.com/scripts/dbx/column-controls.html" rel="nofollow">here</a> but I really don't want to load another 40kb+ only for this effect (especially when I already have jQuery loaded)</p>
http://stackoverflow.com/questions/907771/need-a-jquery-lightbox-plugin-that-supports-live-and-grouping/909200#9092001Answer by Ionut Staicu for Need a jQuery Lightbox plugin that supports $.live() and groupingIonut Staicu2009-05-26T06:34:45Z2009-05-26T06:34:45Z<p>1) you can hack the lightbox plugin to bind on live events
2) you can call lightbox after ajax is completed, only on new elements:</p>
<pre><code>$.ajax({
type: "POST",
url: "url.php",
cache: false,
success: function(data){
$(data).find('a[rel=lightbox]').lightbox(settings).end().appendTo('#ajaxTarget');
}
});
</code></pre>
<p>For <code>settings</code> you can use an array to avoid writting same thing twice ;)</p>
http://stackoverflow.com/questions/780895/using-jquery-document-ready-in-background-page-load/781454#7814540Answer by Ionut Staicu for Using JQuery "Document.ready" in background page load?Ionut Staicu2009-04-23T12:16:20Z2009-04-23T12:16:20Z<p>I don't think you can do this, because you don't actually EMBED pdf's in your page, like you do with swf files.</p>
<p>In fact, the way how browser handle this kind of files (pdf, mov, mp3, etc), it's up for users settings. For example, i set up my browser to download & open pdf files in fox it reader rather than open into browser ;)</p>
<p>Anyhow, i think you can embed pdf into a flash movie which can execute a js function when is loaded. Just an idea :)</p>
http://stackoverflow.com/questions/767244/it-works-but-is-it-best-practice/768209#7682090Answer by Ionut Staicu for It works. But is it best practice?Ionut Staicu2009-04-20T13:18:46Z2009-04-20T13:18:46Z<p>Assuming you have a <code>LI</code> structure (or something similar):</p>
<pre><code><ul>
<li>Some text <a href="delete.php?do=user">delete</a></li>
<li>Some text <a href="delete.php?do=event">delete</a></li>
<li>Some text <a href="delete.php?do=recipe">delete</a></li>
</ul>
</code></pre>
<p>you can do this way</p>
<pre><code>$('.delete').click(function(){
var t=$(this);
jQuery.ajax({
type: "GET",
url: t.attr('href'),
cache: false,
success: function(data){
t.parent().remove(); // you remove the whole li tag
}
});
});
</code></pre>
<p>Of course, if you need to trigger different function on ajax success, then your ways I think is the best pick.</p>
http://stackoverflow.com/questions/670156/what-css-framework-would-you-recomend/670198#6701982Answer by Ionut Staicu for What CSS framework would you recomend?Ionut Staicu2009-03-21T23:18:02Z2009-03-21T23:18:02Z<p>Very simple answer:</p>
<p><strong>NONE</strong></p>
<p>:)</p>
<p>Why? Because you also need to have semantic CSS, not only semantic HTML. So, for example, if you have a div named like <code>size-1</code> (insdeat of... let's say <code>comment-form</code>) what this will tell you? How this will help you on further changes?</p>
<p>And yes, i've tried to use two or three frameworks in last few months but with no luck at all.</p>
http://stackoverflow.com/questions/664260/weird-jquery-behavior-slide/664347#6643470Answer by Ionut Staicu for Weird jQuery behavior - slide()Ionut Staicu2009-03-19T22:45:36Z2009-03-19T22:45:36Z<p>I encountered same problem few days ago with a similar piece of code. </p>
<p>From what I've read, the problem is that you need to trigger "hasLayout" in all browsers. Of course, is not a real <code>hasLayout</code> thing, but you need to do one of these:</p>
<ul>
<li>Float elements. Both titles and lists and add clear:left for both. this should do the trick;</li>
<li>Set width/height for <code>UL</code> elements (hidden stuff);</li>
<li>add <code>position:relative</code> for <code>UL</code> elements</li>
</ul>
<p>Usually, those should do the trick ;)</p>
http://stackoverflow.com/questions/663520/is-it-a-good-idea-to-let-your-users-change-their-usernames/663567#6635670Answer by Ionut Staicu for Is it a good idea to let your users change their usernames?Ionut Staicu2009-03-19T19:00:44Z2009-03-19T19:00:44Z<p>Yes - ONLY IF users don't interact with another users. </p>
<p>NO - if users can interact: forums and stuff like that. It's kinda confusing to see an user with a different name every day.</p>
http://stackoverflow.com/questions/649737/how-can-i-change-the-background-image-of-a-list-item/652119#6521190Answer by Ionut Staicu for How can i change the background image of a list itemIonut Staicu2009-03-16T20:51:48Z2009-03-16T20:51:48Z<p>Instead of adding/removing a background image with CSS, you should add/remove class on hover. This way you can compress your JS file when you release it in the wild :)</p>
<p>However, i guess he wants to save current background image, replace it on mouse over and revert it back on mouse out :)</p>
http://stackoverflow.com/questions/643965/how-to-do-late-binding-with-jquery/644039#6440391Answer by Ionut Staicu for How to do late binding with jQuery?Ionut Staicu2009-03-13T18:31:51Z2009-03-13T18:31:51Z<p>I think you don't do it right. The way I use jquery forms is this:</p>
<pre><code>$('#myform').submit(function(){
$(this).ajaxSubmit(function(){
alert('Thanks for your comment');
});
return false
});
</code></pre>
<p>You call this after the form is injected into DOM.
Another way to do this is to using <code>live</code> binding from <a href="http://docs.jquery.com/Events/live#typefn" rel="nofollow">jquery</a></p>
<pre><code>$('#myform').live('submit', function(){
$(this).ajaxSubmit(function(){
alert('Thanks for your comment');
});
return false
});
</code></pre>
<p>Any way you pick, you must include this piece of code into <code>$(document).ready()</code> </p>
http://stackoverflow.com/questions/637811/how-i-can-replace-style-with-new-one-using-jquery/638094#6380941Answer by Ionut Staicu for how i can replace style with new one using jqueryIonut Staicu2009-03-12T10:50:47Z2009-03-12T10:50:47Z<p>if you need to change css values dynamically (<code>background-color:VARIABLE</code>), you can do one of this:</p>
<ul>
<li>with ajax you request a new stylesheet with new values. After that, you inject it into <code>head</code> tag.</li>
<li>traverse all DOM every time you need to change something. <code>$('.someDIv').css()</code>. Be careful though, this way can be pretty resource eater :)</li>
</ul>
<p>if you only need to add some static css, you can add/remove class from <code>body</code>:</p>
<pre><code>$('body').addClass('new')
</code></pre>
<p>or</p>
<pre><code>$('body').addClass('new2')
</code></pre>
<p>And from CSS:</p>
<pre><code>.someClass {background:red}
body.new .someClass {background:blue}
body.new2 .someClass {background:green}
</code></pre>
http://stackoverflow.com/questions/603627/how-to-callback-functions0How to — callback functionsIonut Staicu2009-03-02T19:26:56Z2009-03-02T23:36:04Z
<p>Hi guys.</p>
<p>I have a big problem writing a small piece of code using JS/jQuery (don't know which of these is causing the problem). Anyhow, here we go:</p>
<pre><code>$('#themePicker').unbind().click(function() {
var t = $(this);
modalwindow2(t, function() {
console.log(1);
}, function(w) {
console.log(w);
});
return false;
});
</code></pre>
<p>and the function itself:</p>
<pre><code>function modalwindow2(w, callbackOnSHow, callbackOnHide) {
if (typeof(callbackOnSHow) == 'function') {
callbackOnSHow.call();
}
// do some stuff //
$('form').submit(function() {
ajaxSubmit(function(data) {
if (typeof(callbackOnHide) == 'function') {
console.log('---------------');
console.log(data);
console.log('---------------');
callbackOnHide.call(data);
}
});
return false
});
}
</code></pre>
<p>The function is called <code>modalwindow2</code> and I want to call a function when the modal is shown and another function when the modal will be hidden.</p>
<p>The first is not a problem.</p>
<p>The second… Well… Let's just say it's a problem. Why?</p>
<p>I want a parameter sent to the second function. The paramenter is an ajax response, similar to other jQuery stuff (ajax action, sortable, etc).</p>
<p>I hope I made myself clear enough.</p>
<p>Thanks!</p>
<p>Edit:</p>
<p>I'm using jQuery 1.1.2 (or 1.1.3) and upgrading or using jQuery UI is NOT a solution. I have some dependencies (interface is one of them) and i don't have enough time (nor motivation) to upgrade to 1.3 & UI 1.7.</p>
http://stackoverflow.com/questions/593602/keyboard-shortcuts-with-jquery/595517#5955175Answer by Ionut Staicu for keyboard shortcuts with jqueryIonut Staicu2009-02-27T16:35:46Z2009-02-27T16:35:46Z<p>What about <a href="http://code.google.com/p/js-hotkeys/" rel="nofollow">this</a> one? (<a href="http://jshotkeys.googlepages.com/test-static-01.html" rel="nofollow">demo</a>)</p>
http://stackoverflow.com/questions/590252/how-to-hide-accordions-on-page-load/590324#5903240Answer by Ionut Staicu for How to hide Accordions on page load?Ionut Staicu2009-02-26T12:17:55Z2009-02-26T12:17:55Z<p>from css:</p>
<pre><code>display:none;
</code></pre>
<p>or</p>
<pre><code>visibility:hidden;
</code></pre>
<p>or</p>
<pre><code>position:absolute;left:-9999px;
</code></pre>
<p>or</p>
<pre><code>opacity:0
</code></pre>
<p>This is to hide the accordion COMPLETLY. But if you want to show only accordion heads, then hide only contents (dd or div or whatever did you use) with <code>display:none</code>.</p>
http://stackoverflow.com/questions/574699/selecting-a-jquery-tab-using-a-parameter-in-the-url/574721#5747210Answer by Ionut Staicu for Selecting a JQuery Tab using a parameter in the URLIonut Staicu2009-02-22T10:54:43Z2009-02-22T10:54:43Z<ul>
<li><a href="http://stilbuero.de/jquery/history/index.html" rel="nofollow">http://stilbuero.de/jquery/history/index.html</a></li>
<li><a href="http://stilbuero.de/jquery/tabs/index.html#fragment-1" rel="nofollow">http://stilbuero.de/jquery/tabs/index.html#fragment-1</a></li>
</ul>
<p>I guess is enough to load history and ghet this to work. </p>
http://stackoverflow.com/questions/1330823/what-is-the-most-performant-way-to-inject-new-code-into-the-dom/1330951#1330951Comment by Ionut Staicu on What is the most performant way to inject new code into the DOM?Ionut Staicu2009-08-25T21:13:44Z2009-08-25T21:13:44ZExcellent reading on quirksmode! Thanks.http://stackoverflow.com/questions/1330823/what-is-the-most-performant-way-to-inject-new-code-into-the-dom/1330896#1330896Comment by Ionut Staicu on What is the most performant way to inject new code into the DOM?Ionut Staicu2009-08-25T20:48:30Z2009-08-25T20:48:30Zactually yeah, that's what I wanted to say: one method call. If you compare with json stuff where the js engine iterate the whole object...http://stackoverflow.com/questions/1317718/jquery-hover-and-nested-lists/1317750#1317750Comment by Ionut Staicu on jquery hover and nested lists.Ionut Staicu2009-08-23T16:19:46Z2009-08-23T16:19:46Zadding css styling in your JS it's bad. BAD! I rather add a class name ;)http://stackoverflow.com/questions/1159993/css-frameworks-semantic-naming/1160084#1160084Comment by Ionut Staicu on CSS Frameworks & "Semantic Naming"Ionut Staicu2009-07-22T06:16:06Z2009-07-22T06:16:06ZIs not about broking the web standards. It's all about semantics. div class="last" will tell you that that div is last. But what "span-24" will tell you? :)http://stackoverflow.com/questions/1153241/send-a-jquery-callback-function-inside-a-variable/1153272#1153272Comment by Ionut Staicu on send a jquery callback function inside a variableIonut Staicu2009-07-20T12:57:57Z2009-07-20T12:57:57Zthen... it seems that callback is really not a function :)http://stackoverflow.com/questions/1153241/send-a-jquery-callback-function-inside-a-variable/1153277#1153277Comment by Ionut Staicu on send a jquery callback function inside a variableIonut Staicu2009-07-20T12:37:16Z2009-07-20T12:37:16ZYeah, read my comment <a href="http://stackoverflow.com/questions/1153241/send-a-jquery-callback-function-inside-a-variable/1153272#1153272" rel="nofollow" title="send a jquery callback function inside a variable">stackoverflow.com/questions/1153241/…</a> . Just use call() instead of eval()http://stackoverflow.com/questions/1143955/how-do-i-change-the-function-in-jquery-for-another-word-for-make-it-compatible/1143989#1143989Comment by Ionut Staicu on How do I change the $ function in jquery for another word for make it compatible with other framworksIonut Staicu2009-07-17T19:58:07Z2009-07-17T19:58:07Zwell... the problem may be with the accordion. However, if is a simple accordion, you may try this way: <a href="http://dev.iamntz.com/166/jquery-accordion-tutorial" rel="nofollow">dev.iamntz.com/166/jquery-accordion-tutorial/…</a> :)http://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/400519#400519Comment by Ionut Staicu on What is the worst web usability error you have encountered?Ionut Staicu2009-07-10T21:06:15Z2009-07-10T21:06:15ZWell... For that it's good to use a popup :Dhttp://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/400519#400519Comment by Ionut Staicu on What is the worst web usability error you have encountered?Ionut Staicu2009-07-10T08:48:24Z2009-07-10T08:48:24Zhasen & nilamo: do you like when a site will open new windows? But please, be honest!http://stackoverflow.com/questions/1026116/what-is-the-benefits-of-using-jquery-ui-over-plugins/1026135#1026135Comment by Ionut Staicu on What is the benefits of using jQuery UI over plugins?Ionut Staicu2009-06-22T09:21:32Z2009-06-22T09:21:32ZI don't think the "no bloat" is real :Dhttp://stackoverflow.com/questions/339956/whats-the-best-ui-for-entering-date-of-birth/999813#999813Comment by Ionut Staicu on What's the best UI for entering date of birth?Ionut Staicu2009-06-16T14:37:17Z2009-06-16T14:37:17ZDon't worry, you can chop css pretty much. I wanted only to know what's the best method ;)http://stackoverflow.com/questions/906104/sortable-similar-with-youtube-homepage/909408#909408Comment by Ionut Staicu on Sortable similar with youtube homepageIonut Staicu2009-05-26T10:45:46Z2009-05-26T10:45:46Zlive is not applicable because i have stuff like tooltips and sliders that don't allow me to use live :). But thanks anyway!http://stackoverflow.com/questions/770475/dom-properties-methods-that-arent-available-in-jquery/770719#770719Comment by Ionut Staicu on DOM properties/methods that aren't available in jQuery?Ionut Staicu2009-04-21T07:41:48Z2009-04-21T07:41:48ZI wonder how do you bind onbeforeunload with jquery :Dhttp://stackoverflow.com/questions/670156/what-css-framework-would-you-recomend/670198#670198Comment by Ionut Staicu on What CSS framework would you recomend?Ionut Staicu2009-03-21T23:27:40Z2009-03-21T23:27:40ZThen the whole idea of framework is going dooown :)http://stackoverflow.com/questions/637811/how-i-can-replace-style-with-new-one-using-jquery/638094#638094Comment by Ionut Staicu on how i can replace style with new one using jqueryIonut Staicu2009-03-12T13:50:31Z2009-03-12T13:50:31Zi think you can gave a NAME or ID to <style> tag and then change their attributes :)