0
votes
What did I do wrong here? [Javascript Regex]
A simpler way to write it still would be
var name_regex = /^([a-z0-9_])+$/i;
…
0
votes
How do I programatically set the value of an select box element using javascript?
Why not add a variable for the element's Id and make it a reusable function?
function SelectElement(selectElementId, valueToSelect)
{
var element = document.getElementById(s …
0
votes
Yet Another world city auto complete field question
If you want to save the cost of going to the database all the time cache this data as a flat file in JSON format and load it via an AJAX request. Update the file from the db whenever it changes or …
-1
votes
Javascript Regex: How to bold specific words with regex?
var needle = 'cows';
var regexp = new RegExp('(^|\s)('+needle+')(\s|$)', 'ig');
var old_string = 'cows at www.cows.com, milk some COWs';
var new_string = old_string.replace(regexp, '< …
0
votes
jquery - pass text on the page into a dialog
Expanding on the previous answer, if you just want a dialog box it should be (jquery required):
<a href="#" id="mylink">Some Text here</a>
$('#mylink').click(function() …
0
votes
Extract parameter value from url using regular expressions
Not tested but this should work:
/\?v=([a-z0-9\-]+)\&?/i
…
