[jQuery] Re: jquery-corner plugin not working anymore?

2009-03-16 Thread j0llyr0g3r
could recommend? On Mar 15, 9:23 pm, donb falconwatc...@comcast.net wrote: I would give jQuery 1.2.6 a try.  Some plugins have trouble with 1.3.x On Mar 15, 3:24 pm, j0llyr0g3r th3.gr31t.j0lly.r0...@googlemail.com wrote: Hi Mike, well, when i corner the div itself like this: CODE

[jQuery] Re: jquery-corner plugin not working anymore?

2009-03-15 Thread j0llyr0g3r
Hi Mike, well, when i corner the div itself like this: CODE: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html head script src=jquery.js type=text/javascript/script script src=jquery.corner.js

[jQuery] jquery-corner plugin not working anymore?

2009-03-14 Thread j0llyr0g3r
Hey guys, i am having trouble with the jquery-corner plugin. To narrow down my problem i created a really simple example page: CODE: html head script src=jquery.js type=text/javascript/script script src=jquery.corner.js type=text/javascript/script script type=text/javascript

[jQuery] Refactoring problem with jquery-selectors

2008-12-28 Thread j0llyr0g3r
Hey guys, i am having problems with some refactoring: I have some html-tables to which i add an onclick-handler like this: CODE: addClickHandler('myTableID',myFunction); 'addClickHandler' looks like this: CODE: function addClickHandler(tableId, functionName) { jQuery('#' + tableId +

[jQuery] Re: Refactoring problem with jquery-selectors

2008-12-28 Thread j0llyr0g3r
, functionName, myUrl)  {         jQuery('#' + tableId + ' ' + 'tbody').children('tr').click(function() {                 functionName(this,myUrl);         }); } And: function clickOnTableRowResultSet(element,url) {...} -Mike From: j0llyr0g3r Hey guys, i am having problems with some

[jQuery] how to select the content of the current table row?

2008-12-22 Thread j0llyr0g3r
Hey guys, i'm having a hard time with jquery right now. Imagine the following simple table: CODE: table border='1' id='list_tracks_table' colgroup col width='40%' / col width='20%' / col width='20%' / col width='20%'

[jQuery] Re: how to select the content of the current table row?

2008-12-22 Thread j0llyr0g3r
(td.hidden_url_field_for_track_list).text()); }); }); Haven't tested but you could try something like this maybe. On Tue, Dec 23, 2008 at 11:40 AM, j0llyr0g3r th3.gr31t.j0lly.r0...@googlemail.com wrote: Hey guys, i'm having a hard time with jquery right now. Imagine the following simple table

[jQuery] Strange AJAX + jquery refresh problem

2008-10-29 Thread j0llyr0g3r
Hey folks, i am really getting desperate here. I use jquery (current version) with RoR 2.0. Now i have a problem with a login-mask for users. I fetch and submit typed in username and password like this: CODE -- jQuery(#index_login_submit).click(function(event){