2
votes
Show Only One Element with JQuery
$("#linkgarykhit").click(function(){
if($("#infogarykhit").css('display') != 'none'){
$("#infogarykhit").hide();
}else{
$("#infocontent *").hide();
…
1
vote
1
vote
Is there a way to use jQuery’s serialize form fields and trim the value in the fields?
Trim all <input> and <textarea></textarea> element values in the DOM:
$('input, textarea').each(function(){
$(this).val(jQuer …
0
votes
Dynamically Set the Height of Two floated DIVS
Using jQuery:
$("#dvRightContent").bind("resize", function(){
$("#dvLeftContent").css('height', $("#dvRightContent").css('height'));
});
…
0
votes
jQuery Animation - Smooth Size Transition
Hello meyahoocoma4c5ki0pprxr19sxhajsogo6jgks5dt.
You could wrap the 'content div' with an 'outer div' which is set to an absolute width value. Inject the new content with a "hide()" or "ani …
2
votes
$(this).css(”width”) not working on ancohor tags in Safari
Andy is correct. There is a solution offered here:
http:// …
1
vote
I have a table that I want to move to the top of the page via jquery
If by move you mean structurally relocate it in the DOM, you could do this:
var mtId = 'mytable'; //the id of the div to move
var mt = $('#' + mtId);
var mtInnerHtml = mt.html();
mt …
1
vote
Problem with jQuery data() function in GreaseMonkey
The following should work:
function letsJQuery($)
{
//store the data initially
var ta = $('textarea[name=longtext]').data('tst', 'abc');
//retrieve the data on spac …
2
votes
table is breaking -jQuery
Providing the table HTML in addition to the javascript in the Question would further clarify, but the problem may be related to a …
0
votes
List of jQuery plugins that are themable?
It's not dedicated to themeable only plugins, but here's a good jQuery plugin collection resource:
http://jquerylist.com/ …
1
vote
How to create a generic id reference with jQuery
It seems you are going for something like this:
HTML:
<div class="content" id="con_a">Hello world.</div>
<div id="show_con_a" style="display:none">Show M …
3
votes
How to remove an element slowly with jQuery?
target.fadeOut(300, function(){ $(this).remove();});
or
$('#target_id').fadeOut(300, function(){ $(this).remove();});
Duplicate: …
1
vote
Regex to find word on page including inside tags.
J-P linked to some good utilities for the job.
With straight jQuery …
1
vote
How to do this in jQuery?
As adamantium said, selecting by class is probably a better practice. If you want to select by multiple ids, you can do this:
$(document).ready(function(){
$("#table1 …
0
votes
How to move a <tr> up or down within <table> via jQuery?
HTML:
<table id="t1">
<tr>
<td>abc</td>
</tr>
<tr>
<td>efg</td>
</tr>
</table> …
