Re: how get the chosen radio button Programming Software Development by JamesCherrill getSelection() method for the ButtonGroup that they are both in. getSelection() remove html and replace with text Programming Web Development by softDeveloper Hi all, how can we replace the getSelection HTML in an iframe? I want to getSelection() and the replace selection's html with simple text. Re: getSelection() remove html and replace with text Programming Web Development by softDeveloper found it: [CODE] self.parent.frames[i].getSelection().anchorNode.parentNode.outerHTML=self.parent.frames[i].getSelection().anchorNode.parentNode.innerHTML;[/CODE] \t getSelection doesn't read tabs Programming Web Development by softDeveloper Hi All, I'm selecting text from an iframe using getSelection(). It reads everything but the tabs '\t'. Re: \t getSelection doesn't read tabs Programming Web Development by phper … will require jQuery) [CODE] $('#click').click(function(){ var range = window.getSelection().getRangeAt(0); var selectionContents = range.extractContents(); var span = document.createElement… function identify frames. Programming Web Development by MDanz … var txt = ''; if (window.getSelection) { txt = window.getSelection(); } else if (document.getSelection) // FireFox { txt = document.getSelection(); } else if (document.selection)… i identify the frames?.. document.getSelection(); and window.getSelection() only work for the frame the… Re: function identify frames. Programming Web Development by MDanz …() { var txt = ''; if (parent.link_frame.location.getSelection) { txt = parent.link_frame.location.getSelection(); } else if (parent.link_frame.location.getSelection) // FireFox { txt = parent.link_frame.location… fake HiScore() confusion in Hangman Programming Software Development by BLKelsey … the selections such as New Game and Load Game char getSelection()const; //Get user selection (accessor - getter) void setSelection(char); … menu class1.showSelection(); //Show user selection from class Menu class1.getSelection(); //Retrieves user selection char sel; //Declares 'sel' variable cin … Starter in C. Doing this for school. C program contains employee iinformation Programming Software Development by smitem03 … /////////////////////////////////////////////////////////////////////////////// // Function Name : GetSelection // // Originated : April … while statement); return iValue; } // end GetSelection function /////////////////////////////////////////////////////////////////////////////// // Function Name : GetInput //… IE selection() issue Programming Web Development by Graphix … part of my editor: [code] if (window.getSelection){ selection = window.getSelection(); }else if (document.getSelection){ selection = document.getSelection(); }else if (document.selection){ selection = document… Re: IE selection() issue Programming Web Development by Graphix … full encoding for IE: [code] if (window.getSelection){ selection = window.getSelection(); }else if (document.getSelection){ selection = document.getSelection(); }else if (document.selection){ selection = document… Re: IE selection() issue Programming Web Development by Graphix …; 0){ textselected = true; } } }else{ if (window.getSelection){ selection = window.getSelection(); }else if (document.getSelection){ selection = document.getSelection(); }else if (document.selection){ selection = document.selection… Document.cookie not working! Programming Web Development by jakx12 ….cookie); function getSelText() { var SelText = ''; if (window.getSelection) { SelText = window.getSelection(); } else if (document.getSelection) { SelText = document.getSelection(); } else if (document.selection) { SelText = document… looping through a menu again after invalid choice Programming Software Development by mpyap … if(toupper(another)!='Y'|| another != 'N') { selection = getSelection(); } return 0; break; default: cout << &…; }//end of main function //*******************function definitions char getSelection() { char choice; cout << "… Re: fake HiScore() confusion in Hangman Programming Software Development by daviddoria [QUOTE]1. Why doesn't my 'char Menu::getSelection()' from my menu.cpp not display the cout stream? That'… C++ functions and loop errors Programming Software Development by bornok15 …); int main(){ char sel; while(sel!=3){ clrscr(); displaymenu(); sel = getselection(); switch(sel){ case 1: clrscr(); getacct(cname,cadd); getch(); break… Re: C++ functions and loop errors Programming Software Development by bornok15 …; string cname; string cadd; while(sel!=3){ clrscr(); displaymenu(); sel = getselection(); switch(sel){ case 1: clrscr(); getacct(cname,cadd); getch(); break… Re: C++ functions and loop errors Programming Software Development by Joatmon … have included into the program. void displaymenu(); int getselection(); void getacct(string &, string &); //…send the system the cls message displaymenu(); sel = getselection(); switch(sel){ case 1: system("cls&…;< "\n 3. Exit Program"; } int getselection(){ int s; cout << "\nSelection: "… Help with loop and functions Programming Software Development by Se7Olutionyg … namespace std; //Function declare void displayMenu(void); void getSelection (int &userChoice); void processChoice (int userChoice); …; //Main int main (void) { int userChoice =0; displayMenu(); getSelection(userChoice); processChoice (userChoice); monitorCoke( cokeleft, cocaout); monitorpep ( pepleft, … coke machine new Programming Software Development by Se7Olutionyg …namespace std; //Function declare void displayMenu(void); void getSelection (int &userChoice); void processChoice (int userChoice);… int main (void) { int userChoice = 0 ; displayMenu (void); getSelection(userChoice); processChoice (userChoice); monitorCoke( cocaout); monitorpep ( pepsiout) ; monitorcana … Re: IE selection() issue Programming Web Development by Airshow … to handle browsers which support only [ICODE]window.getSelection[/ICODE] or [ICODE]document.getSelection[/ICODE]. Maybe just accept that automatic insertion of… wxPython Widget Problem Programming Software Development by SoulMazer ….Close() def SongSelect(self, event): index = event.GetSelection() self.artistBox.SetSelection(index) self.albumBox.SetSelection(index)… def ArtistSelect(self, event): index = event.GetSelection() self.songBox.SetSelection(index) self.albumBox.SetSelection(index)… Tracking balance of an account Programming Software Development by Danielhuo …string> #include <cstdlib> using namespace std; int getSelection(string message); int main(){ //local varaibles int aAnswer, payment; …<< endl; cin.ignore(100, '\n'); }while(true); } int getSelection(string message) { string input; char* pointed; int selectedOption; do { cout… TextBox Programming Software Development by maverick420 …int selection = 0; Monument order = null; MonumentBase orderBase = null; selection = getSelection(); createOrder(selection); System.exit(0); // GUI closing } /** * Method… getSelection to get user input f*/ private static int getSelection() { String stringSelection = " "; int … Re: TextBox Programming Software Development by maverick420 …int selection = 0; Monument order = null; MonumentBase orderBase = null; selection = getSelection(); createOrder(selection); System.exit(0); // GUI closing } /** * Method… getSelection to get user input f*/ private static int getSelection() { String stringSelection = " "; int … errors in python program Programming Software Development by dreking6 … event): #print 'OnCmdDisconnect' index = self.list.GetSelection() if index == -1: return self.setConnState(index,…self, event): #print 'OnCmdViewLog' index = self.list.GetSelection(); if self.connections[index].logdlg != None: # ? … removing wrapped tags not working javascript Programming Web Development by wolfgang1983 …', function() { var text, sel, range; if (window.getSelection) { text = window.getSelection().toString(); sel = window.getSelection(); if (sel.rangeCount) { range = sel.getRangeAt(0); range… Re: IE selection() issue Programming Web Development by Graphix … made a separate method of placing the bb-code with getSelection(), I just made sure that the browser wasn't IE… Re: looping through a menu again after invalid choice Programming Software Development by mpyap …; else if(toupper(another)!='Y'|| another != 'N') > { > selection = getSelection(); > } (lines 42-45) Now at this part all it… Re: Help with Java Menu Program (infinite loop?) Programming Software Development by mobility42 …a #. I think my problem lies somewhere in the GetSelection() code, when my menu reads the selection, it … { Scanner scan = new Scanner(System.in); int selection; public int GetSelection() { selection = scan.nextInt(); return selection; } public void display()…