0
votes
What did I do wrong here? [Javascript Regex]
By 'not working' I take it you mean it is letting invalid entries through (rather than not letting valid entries through).
As Annan has said, this would probably be due to the lack of the ' …
2
votes
PHP and JavaScript regex
If the regular expressions are simple then there should be no issue, as the basics of regular expressions are common across most implementations.
For particulars then it would be best to st …
2
votes
How can I set breakpoints in an external JS script in Firebug
Clicking on the line number in the left hand margin should create a break point for you (a red circle should appear).
All loaded scripts should be available from the firebug menu - click wh …
4
votes
jQuery slicing and click events
The following selector should also work in jQuery: 'input:checkbox'.
You can then string the :gt(index) and :lt(index) filters together, so if you wan …
0
votes
Changing the default title of confirm() in JavaScript?
You can't unfortunately. The only way is to simulate this with a window.open call.
…
12
votes
Getting the ID of the element that fired an event using JQuery
In jQuery event.target always refers to the element that triggered the event, where 'event' is the parameter passes to the function. …
2
votes
Linking combo box (JQuery preferrably)
I'm not sure where you want to link to when you click the Div, but given something like this perhaps would work:
<select id="mySelect">
<option value="1">Option 1</ …
1
vote
How to read bound hover callback functions in jquery
Calling an event bind method (such as hover) does not delete old event handlers, only adds your new events, so your idea of 'restoring' the old event functions wouldn't wo …
1
vote
How do I change/replace a flash object with jquery or pure javascript?
The empty() method is the better way of deleting content. Don't know if that will solve your problem though :)
$('#mydiv').empty();
You could also try …
2
votes
Generated Javascript Does not execute
I don't see the problem. The following works fine for me:
$(document).ready(function() {
$('#mainDiv').html('<input type="button" onclick="LoadPage()" value="Test" />');
}); …
2
votes
javascript to jquery
It depends greatly on exactly what 'rt' will contain and how it is then added to the DOM.
If it just contains HTML then obviously $(parentSelector).html(rt) would solve the pro …
1
vote
Attaching and Detaching events to/from Virtual Earth maps
Well obviously you could store the function:
var obj = this;
var func = function(event){ obj.onClickMap(event); }
_map.AttachEvent("onclick", func);
And then detac …
1
vote
Javascript function not working in Mozilla
Mozilla does not set the global window.event property.
I'd recommend using an AJAX framework, such as JQuery (or even Microsoft AJAX).
function CloseSession(eve …
1
vote
jQuery :cant use split function
Well seeing as split is a method defined on a string, have you considered trying data.toString().split(".") or String(data).split(".") ?
…
2
votes
jQuery Disjoint
You could try the following:
var aNotInB = $.grep(a, function($e) { return $.inArray($e, b) == -1; });
var bNotInA = $.grep(b, function($e) { return $.inArray($e, a) == -1; });
…
