How do i split with multiple delimiters( i think )? im trying to split my split with multiple delimiters different values but i cant find a good way to do so.
I am trying to read data from excel file and use the same to populate a select menu. If any cells are blank, I want to ignore. But I am unable to do this. The dropdown gets populated with blanks. Following is the peice of code:
var excel_cell = excel_file.ActiveSheet.Cells(i,1); alert(excel_cell); if(excel_cell=='undefined')
I am in the process of editing the below code I found online, I have a from multi-select list and a to multi-select list. Before rewriting the to list, I want to sort it but ignore the "F - " and the "R - ". Ideas? Code:
The page im loading with $.get has a syntax error that is killing my entire script. Is there anyway to test if it contains a syntax error and/or just ignore it?
$.get('http://www.example.com/',function(response){ var someText = $(response).find('#myDiv').text(); // Script doesnt run after this because response contains a syntax
I'm trying to use .load to get a simple web page. In the documentation for the .load function, I see that I can just return parts of page. I pass through the <body> element in order to just get the body, and not the headers of the html document, however in FireFox, it seems to still be returning all the headers. How can I use .load to ignore the headers.
I want Alt + D to be captured and bubbling to be cancelled, So the browser does not process it. It should work with IE, FF, Sarari and Chrome browser.Problem:I am able to capture and cancel it and it perfectly works with FF and Chrome, however it seems like IE and safari always process menubar shortcuts, even if you have cancelled the bubbling and returned false.I am just wondering if anyone ever be able to cancel the menubar shortcuts under IE and Safari?
I want the page to completely ignore all mouse clicks. I can create the onmouseclick event and return false, but that only disables certain types of things. I can still, for example, click in a text box and then type something or change the selection in a dropdown list. I tried returning false in the onmousedown event, but that didn't do the trick. I'd rather not have to disabled all the controls on the page. Any ideas?
I have some date calculations that add a time span to a date. The problem is, when I add a time span that is a whole number of days to a date, the result can be +/- 1 hour due to daylight savings. Is there anyway to disable this?
<div class="one"> Text here Text here <div class="ignore">Text here to remain black</div> Text here Text here
[Code]...
My question is, how would I change all text within class one to say red (including sub-divs/spans etc), whilst completely ignoring the text with the ignore class(es)?
We have been using the following js/regex to find and replace all non-alphanumeric characters apart from - and + outputString = outputString.replace(/[^w|^+|^-]*/g, "");
However it doesn't work entirely - it doesn't replace the ^ and | characters. I can't help but wonder if this is something to do with the ^ and | being used as meta-characters in the regex itself.
I've tried switching to use [W|^+|^-], but that replaces the - and +. I thought that possibly a lookahead assertion may be the answer, but I'm not very sure how to implement them.
Trying to use the [URL] I would like to beable to ignore default values, but am sort of stuck. I already looked through all 42 results after searching for how to validate while ignoring default value. I have tried:
I'm trying to write/find a regular expression for finding ampersands but not HTML entites.I have this which finds entities but can't figure out how to ignore entities and return unmatched "&"
&[^s]*;
Test string: ThisĀ is sample test containing a bunch of & and entities. Do you shop at: M&S? &x#1234;
I want to HTML encode the non-entity ampersands for insertion into XML e.g. "bunch of & and" --> "bunch of & and"
Im using the below javascript to resize images on a forum I have created but I want it to ignore 2 certain images that are part of my header. Heres the code
<script> window.onload = resizeimg; function resizeimg() { if (document.getElementsByTagName) { [Code]...
i have a function (below) which reads the last n lines from a text file. rather than read the whole line and output it as is, i want to be able to read the line and split the tab delimited text file so I can present it in columns, exclude unwanted data etc....
if you should be able to use the split() function inside user created functions eg:
function testSplit(toBeSplit){ var tempSplit = toBeSplit.split(""); for(a=0;a<tempSplit.length;a++){ document.write(tempSPlit[a]+"<br />"); }}
testSplit("string to be split");
as the function doesnt work for me and i get a message from firebug saying toBeSplit.split is not a function yet if i split the string outside the function it works fine??
on my first page I select one or multiple serial numbers that are submitted to the main page. on the main page it loops through the comma delimited list of serial numbers and displays them seperately with radio buttons associated to each serial number. when someone selects the radio button it will open a popup window and pass that particular serial number. I have tried to split out the individual serial numbers using the split command which I thought would then put the values into an array. I figured then I could select out each array value depending on which radio button I selected. for some reason it is not working. Inspecing the following code, can someone help me!!??
var objSourceForm = document.forms['demate']; var sOldserials = objSourceForm.elements['maj_asm_serial_nbr'].value; var serials =sOldserials.split(','); var sString = ''
for (i=0; i< serials.length; i++) {
sString = serials[i]; }
var winOptions = window.open("red_reason_popup_demate.cfm?comp_condition="+lc+"&serial_nbr="+sS tring+"&maj_asm_name="+document.demate.maj_asm_name.value,"remotewin","width=3 25,height=225,chrome=yes, scrollbars=yes");
I thought that the for loop will loop
for (i=0; i<serials.length; i++) { sString = serials[i]; alert (serials[i]) } through two times and each time the serials[i] would be either serials[0] or serials[1]. I figure I need something else inside the for loop to relate the i to the loopcounter of the main page?
I am attatching a gif screen shot to show you what i am displaying. each serial number has a radio button with a RED label. When you select that radio button, the associated serial number needs to be passed in the url as the popup window opens. I am already passing two other values in the url.
sString = serials[i]; this is the line in my code that is not doing what I expected it to do.