0
votes
Passing in parameter from html element with jQuery.
The function bind() takes, takes the element as a parameter (in your case the span), so to get the id you want from it you should do some DOM traversal like:
function doSomething(ev …
2
votes
jQuery AJAX - made browser request new location in redirect header
jQuery does what it is expected to do: follow redirects automatically and go fetch the final page.
You can go to http://jigsaw.w3.or …
1
vote
Transform string into image with JQuery
I'd do something like this
$("some-selector").each(function(){
$(this).html($(this).html().replace(/\[(http:.*?)\]/gi, function(str, p1){
return "<img src='"+p1+"' /& …
0
votes
JQuery change text to input
Something like:
$("td.url a").bind("click", function(){
var clickevent = arguments.callee;
$("td.url input").trigger("blur");
$(this).replaceWith("<input type='text' …
0
votes
check box enable in Jquery
I think that you want this to happen
$(document).ready(function() {
function toggletr(obj){
if(obj.checked){
$("#tr99").show();
$("#cbox").attr …
0
votes
How to parse JSON array in jQuery?
Careful with the eval, the JSON specs http://json.org/js.html recommend something like
var myObject = eval('(' + myJSONtext + ') …
0
votes
How to call innerhtml after modifying it in firefox
The first anonymous function is not being executed...what does it do?
if you want to execute it, add two parens to the end like
})();
Sorry if it does not …
1
vote
Jquery Relace Part of String in Any Class
You can put more than one classes in an element, like:
<a class="someClass selected" />
So, with jQuery:
$("a.selected").removeClass("selecte …
0
votes
Is it possible to populate a SELECT dropdown when clicking on it?
you can also cheat: onclick , substitute the options with one that just says "Loading..." and let it display normally. Then, when you have the correct data, you put it in the select and make it dis …
1
vote
How to programmatically generate a window.event using Javascript?
I would definitely use jQuery (or some other framework). It will make your life easier. I am sure every browser will have a different way of triggering the event.
…
0
votes
Setting div background image using JQuery
maybe it also works with background but i always use
background-image
And also I always put quotes around the path
$('#pic').css("bac …
0
votes
javascript setTimeOut - not running on nested setTimeout
this
var th1 = setTimeout(function () {hide("twitRow1")},1000);
var ts1 = setTimeout(function () {show("twitRow2")},1000);
will have them r …
0
votes
0
votes
Adding a new script file to a page using GreaseMonkey
Greasemonkey acts when the DOM has already loaded. You can try to rewrite the code before it gets rendered with a full fledged browser extension. Look into …
1
vote
How to use jQuery click event to change href value asyncronously, based on a JSON query
I think what you actually want is to return false; from the click event, to prevent the actual following of the href, right?
Like:
jQuery("#idofaelement").click …
